mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
27 lines
720 B
Python
27 lines
720 B
Python
|
import AnimatedProp
|
||
|
from direct.interval.IntervalGlobal import *
|
||
|
from direct.task import Task
|
||
|
import math
|
||
|
|
||
|
class SleepingHydrantAnimatedProp(AnimatedProp.AnimatedProp):
|
||
|
|
||
|
def __init__(self, node):
|
||
|
AnimatedProp.AnimatedProp.__init__(self, node)
|
||
|
self.task = None
|
||
|
return
|
||
|
|
||
|
def bobTask(self, task):
|
||
|
self.node.setSz(1.0 + 0.08 * math.sin(task.time))
|
||
|
return Task.cont
|
||
|
|
||
|
def enter(self):
|
||
|
AnimatedProp.AnimatedProp.enter(self)
|
||
|
self.task = taskMgr.add(self.bobTask, self.uniqueName('bobTask'))
|
||
|
|
||
|
def exit(self):
|
||
|
AnimatedProp.AnimatedProp.exit(self)
|
||
|
if self.task:
|
||
|
taskMgr.remove(self.task)
|
||
|
self.task = None
|
||
|
return
|