Poodletooth-iLand/toontown/safezone/SafeZoneManager.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

25 lines
843 B
Python
Executable file

from pandac.PandaModules import *
from direct.distributed import DistributedObject
from direct.directnotify import DirectNotifyGlobal
class SafeZoneManager(DistributedObject.DistributedObject):
notify = DirectNotifyGlobal.directNotify.newCategory('SafeZoneManager')
neverDisable = 1
def __init__(self, cr):
DistributedObject.DistributedObject.__init__(self, cr)
def generate(self):
DistributedObject.DistributedObject.generate(self)
self.accept('enterSafeZone', self.d_enterSafeZone)
self.accept('exitSafeZone', self.d_exitSafeZone)
def disable(self):
self.ignoreAll()
DistributedObject.DistributedObject.disable(self)
def d_enterSafeZone(self):
self.sendUpdate('enterSafeZone', [])
def d_exitSafeZone(self):
self.sendUpdate('exitSafeZone', [])