mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-05 11:28:17 -04:00
15 lines
362 B
Python
Executable File
15 lines
362 B
Python
Executable File
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
|
|
|
|
|
class DistributedCameraAI(DistributedObjectAI):
|
|
def __init__(self, air):
|
|
DistributedObjectAI.__init__(self, air)
|
|
self.parent = 0
|
|
self.fixtures = []
|
|
|
|
def getCamParent(self):
|
|
return self.parent
|
|
|
|
def getFixtures(self):
|
|
return self.fixtures
|