oldschool-toontown/toontown/coghq/SellbotHQExterior.py

14 lines
464 B
Python
Raw Normal View History

2019-11-02 17:27:54 -05:00
from direct.directnotify import DirectNotifyGlobal
from toontown.coghq import CogHQExterior
class SellbotHQExterior(CogHQExterior.CogHQExterior):
notify = DirectNotifyGlobal.directNotify.newCategory('SellbotHQExterior')
def enter(self, requestStatus):
CogHQExterior.CogHQExterior.enter(self, requestStatus)
self.loader.hood.startSky()
def exit(self):
self.loader.hood.stopSky()
CogHQExterior.CogHQExterior.exit(self)