mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
16 lines
375 B
Python
16 lines
375 B
Python
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
|
||
|
|
||
|
class DistributedCameraAI(DistributedObjectAI):
|
||
|
def __init__(self, air):
|
||
|
DistributedObjectAI.__init__(self, air)
|
||
|
self.parent = 0
|
||
|
self.fixtures = []
|
||
|
pass
|
||
|
|
||
|
def getCamParent(self):
|
||
|
return self.parent
|
||
|
|
||
|
def getFixtures(self):
|
||
|
return self.fixtures
|