mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 03:35:12 -06:00
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
from panda3d.core import *
|
|
from direct.interval.IntervalGlobal import *
|
|
from otp.level import BasicEntities
|
|
|
|
class GoonClipPlane(BasicEntities.NodePathEntity):
|
|
|
|
def __init__(self, level, entId):
|
|
BasicEntities.NodePathEntity.__init__(self, level, entId)
|
|
self.zoneNum = self.getZoneEntity().getZoneNum()
|
|
self.initPlane()
|
|
self.registerWithFactory()
|
|
|
|
def destroy(self):
|
|
self.unregisterWithFactory()
|
|
BasicEntities.NodePathEntity.destroy(self)
|
|
self.removeNode()
|
|
|
|
def registerWithFactory(self):
|
|
clipList = self.level.goonClipPlanes.get(self.zoneNum)
|
|
if clipList:
|
|
if self.entId not in clipList:
|
|
clipList.append(self.entId)
|
|
else:
|
|
self.level.goonClipPlanes[self.zoneNum] = [self.entId]
|
|
|
|
def unregisterWithFactory(self):
|
|
clipList = self.level.goonClipPlanes.get(self.zoneNum)
|
|
if clipList:
|
|
if self.entId in clipList:
|
|
clipList.remove(self.entId)
|
|
|
|
def initPlane(self):
|
|
self.coneClip = PlaneNode('coneClip')
|
|
self.coneClip.setPlane(Plane(Vec3(1, 0, 0), Point3(0, 0, 0)))
|
|
self.coneClipPath = self.attachNewNode(self.coneClip)
|
|
|
|
def getPlane(self):
|
|
return self.coneClipPath
|