2015-03-03 16:10:12 -06:00
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from toontown.estate.DistributedStatuaryAI import DistributedStatuaryAI
|
|
|
|
|
|
|
|
class DistributedChangingStatuaryAI(DistributedStatuaryAI):
|
|
|
|
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedChangingStatuaryAI")
|
|
|
|
|
2015-05-24 18:23:54 -05:00
|
|
|
def __init__(self, air):
|
|
|
|
DistributedStatuaryAI.__init__(self, air)
|
2015-05-10 07:10:32 -05:00
|
|
|
self.air = air
|
2015-05-24 18:23:54 -05:00
|
|
|
self.growthLevel = -1
|
2015-05-10 07:10:32 -05:00
|
|
|
|
2015-05-24 18:23:54 -05:00
|
|
|
def setGrowthLevel(self, growthLevel):
|
|
|
|
self.growthLevel = growthLevel
|
|
|
|
|
|
|
|
def getGrowthLevel(self):
|
|
|
|
return self.growthLevel
|