mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
23 lines
834 B
Python
23 lines
834 B
Python
from toontown.suit import Suit
|
|
from toontown.town import DDStreet
|
|
from toontown.town import TownLoader
|
|
|
|
|
|
class DDTownLoader(TownLoader.TownLoader):
|
|
def __init__(self, hood, parentFSM, doneEvent):
|
|
TownLoader.TownLoader.__init__(self, hood, parentFSM, doneEvent)
|
|
self.streetClass = DDStreet.DDStreet
|
|
self.musicFile = 'phase_6/audio/bgm/DD_SZ.ogg'
|
|
self.activityMusicFile = 'phase_6/audio/bgm/DD_SZ_activity.ogg'
|
|
self.townStorageDNAFile = 'phase_6/dna/storage_DD_town.pdna'
|
|
|
|
def load(self, zoneId):
|
|
TownLoader.TownLoader.load(self, zoneId)
|
|
Suit.loadSuits(2)
|
|
dnaFile = 'phase_6/dna/donalds_dock_' + str(self.canonicalBranchZone) + '.pdna'
|
|
self.createHood(dnaFile)
|
|
|
|
def unload(self):
|
|
TownLoader.TownLoader.unload(self)
|
|
Suit.unloadSuits(2)
|
|
|