mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
26 lines
1.2 KiB
Python
26 lines
1.2 KiB
Python
|
from toontown.safezone import SafeZoneLoader
|
||
|
from toontown.safezone import TTPlayground
|
||
|
|
||
|
class TTSafeZoneLoader(SafeZoneLoader.SafeZoneLoader):
|
||
|
def __init__(self, hood, parentFSM, doneEvent):
|
||
|
SafeZoneLoader.SafeZoneLoader.__init__(self, hood, parentFSM, doneEvent)
|
||
|
self.playgroundClass = TTPlayground.TTPlayground
|
||
|
self.musicFile = 'phase_4/audio/bgm/TC_nbrhood.ogg'
|
||
|
self.activityMusicFile = 'phase_3.5/audio/bgm/TC_SZ_activity.ogg'
|
||
|
self.dnaFile = 'phase_4/dna/toontown_central_sz.pdna'
|
||
|
self.safeZoneStorageDNAFile = 'phase_4/dna/storage_TT_sz.pdna'
|
||
|
|
||
|
def load(self):
|
||
|
SafeZoneLoader.SafeZoneLoader.load(self)
|
||
|
self.birdSound = map(base.loadSfx, ['phase_4/audio/sfx/SZ_TC_bird1.ogg',
|
||
|
'phase_4/audio/sfx/SZ_TC_bird2.ogg',
|
||
|
'phase_4/audio/sfx/SZ_TC_bird3.ogg'])
|
||
|
bank = self.geom.find('**/*toon_landmark_TT_bank_DNARoot')
|
||
|
doorTrigger = bank.find('**/door_trigger*')
|
||
|
doorTrigger.setY(doorTrigger.getY() - 1.5)
|
||
|
|
||
|
def unload(self):
|
||
|
SafeZoneLoader.SafeZoneLoader.unload(self)
|
||
|
del self.birdSound
|
||
|
|