14 lines
587 B
Python
14 lines
587 B
Python
|
from pandac.PandaModules import *
|
||
|
import SafeZoneLoader
|
||
|
import DLPlayground
|
||
|
|
||
|
class DLSafeZoneLoader(SafeZoneLoader.SafeZoneLoader):
|
||
|
|
||
|
def __init__(self, hood, parentFSM, doneEvent):
|
||
|
SafeZoneLoader.SafeZoneLoader.__init__(self, hood, parentFSM, doneEvent)
|
||
|
self.playgroundClass = DLPlayground.DLPlayground
|
||
|
self.musicFile = 'phase_8/audio/bgm/DL_nbrhood.mid'
|
||
|
self.activityMusicFile = 'phase_8/audio/bgm/DL_SZ_activity.mid'
|
||
|
self.dnaFile = 'phase_8/dna/donalds_dreamland_sz.dna'
|
||
|
self.safeZoneStorageDNAFile = 'phase_8/dna/storage_DL_sz.dna'
|