Poodletooth-iLand/toontown/ai/DistributedJorElCamAI.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

24 lines
727 B
Python
Executable file

from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectAI import DistributedObjectAI
from toontown.toon import ToonDNA
class DistributedJorElCamAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedJorElCamAI")
def __init__(self, air):
DistributedObjectAI.__init__(self, air)
self.air = air
self.dna = None
def generate(self):
self.dna = ToonDNA.ToonDNA()
self.dna.newToonRandom()
DistributedObjectAI.generate(self)
def delete(self):
del self.dna
DistributedObjectAI.delete(self)
def disable(self):
self.dna = None
DistributedObjectAI.disable(self)