mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
25 lines
843 B
Python
25 lines
843 B
Python
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', [])
|