2015-03-03 22:10:12 +00:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from direct.distributed.DistributedNodeAI import DistributedNodeAI
|
|
|
|
|
|
|
|
class DistributedLawnDecorAI(DistributedNodeAI):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedLawnDecorAI")
|
|
|
|
|
2015-05-10 11:47:03 +00:00
|
|
|
def setPlot(self, plot):
|
2015-03-03 22:10:12 +00:00
|
|
|
pass
|
|
|
|
|
2015-05-10 11:47:03 +00:00
|
|
|
def setHeading(self, h):
|
2015-03-03 22:10:12 +00:00
|
|
|
pass
|
|
|
|
|
2015-05-10 11:47:03 +00:00
|
|
|
def setPosition(self, x, y, z):
|
2015-03-03 22:10:12 +00:00
|
|
|
pass
|
|
|
|
|
2015-05-10 11:47:03 +00:00
|
|
|
def setOwnerIndex(self, index):
|
2015-03-03 22:10:12 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
def plotEntered(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def removeItem(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setMovie(self, todo0, todo1):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def movieDone(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def interactionDenied(self, todo0):
|
|
|
|
pass
|