mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
23 lines
724 B
Python
23 lines
724 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.distributed.DistributedObject import DistributedObject
|
|
|
|
class DistributedKartPad(DistributedObject):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedKartPad')
|
|
|
|
def __init__(self, cr):
|
|
DistributedObject.__init__(self, cr)
|
|
self.startingBlocks = []
|
|
|
|
def delete(self):
|
|
del self.startingBlocks
|
|
DistributedObject.delete(self)
|
|
|
|
def setArea(self, area):
|
|
self.area = area
|
|
|
|
def getArea(self):
|
|
return self.area
|
|
|
|
def addStartingBlock(self, block):
|
|
self.startingBlocks.append(block)
|
|
self.notify.debug('KartPad %s has added starting block %s' % (self.doId, block.doId))
|