mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
from otp.level import DistributedEntity
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
from pandac.PandaModules import NodePath
|
|
from otp.level import BasicEntities
|
|
|
|
class DistributedCrushableEntity(DistributedEntity.DistributedEntity, NodePath, BasicEntities.NodePathAttribs):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedCrushableEntity')
|
|
|
|
def __init__(self, cr):
|
|
DistributedEntity.DistributedEntity.__init__(self, cr)
|
|
node = hidden.attachNewNode('DistributedNodePathEntity')
|
|
|
|
def initNodePath(self):
|
|
node = hidden.attachNewNode('DistributedNodePathEntity')
|
|
NodePath.__init__(self, node)
|
|
|
|
def announceGenerate(self):
|
|
DistributedEntity.DistributedEntity.announceGenerate(self)
|
|
BasicEntities.NodePathAttribs.initNodePathAttribs(self)
|
|
|
|
def disable(self):
|
|
self.reparentTo(hidden)
|
|
BasicEntities.NodePathAttribs.destroy(self)
|
|
DistributedEntity.DistributedEntity.disable(self)
|
|
|
|
def delete(self):
|
|
self.removeNode()
|
|
DistributedEntity.DistributedEntity.delete(self)
|
|
|
|
def setPosition(self, x, y, z):
|
|
self.setPos(x, y, z)
|
|
|
|
def setCrushed(self, crusherId, axis):
|
|
self.playCrushMovie(crusherId, axis)
|
|
|
|
def playCrushMovie(self, crusherId, axis):
|
|
pass
|