2019-11-02 17:27:54 -05:00
|
|
|
from pandac.PandaModules import *
|
2019-12-30 00:07:56 -06:00
|
|
|
from . import SafeZoneLoader
|
|
|
|
from . import DLPlayground
|
2019-11-02 17:27:54 -05:00
|
|
|
|
|
|
|
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'
|