mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 12:42:41 -06:00
15 lines
375 B
Python
15 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
|