mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
*** empty log message ***
This commit is contained in:
parent
0e24217d69
commit
35cf965118
@ -20,6 +20,7 @@ class Interval(DirectObject):
|
|||||||
self.name = name
|
self.name = name
|
||||||
self.duration = duration
|
self.duration = duration
|
||||||
self.clock = ClockObject.ClockObject.getGlobalClock()
|
self.clock = ClockObject.ClockObject.getGlobalClock()
|
||||||
|
self.curr_t = 0.0
|
||||||
|
|
||||||
def getName(self):
|
def getName(self):
|
||||||
""" getName()
|
""" getName()
|
||||||
@ -59,12 +60,14 @@ class Interval(DirectObject):
|
|||||||
""" stop()
|
""" stop()
|
||||||
"""
|
"""
|
||||||
taskMgr.removeTasksNamed(self.name + '-play')
|
taskMgr.removeTasksNamed(self.name + '-play')
|
||||||
|
return self.curr_t
|
||||||
|
|
||||||
def __playTask(self, task):
|
def __playTask(self, task):
|
||||||
""" __playTask(task)
|
""" __playTask(task)
|
||||||
"""
|
"""
|
||||||
t = self.clock.getFrameTime()
|
t = self.clock.getFrameTime()
|
||||||
te = (t - self.startT) * self.scale
|
te = (t - self.startT) * self.scale
|
||||||
|
self.curr_t = te
|
||||||
if (te <= self.playDuration):
|
if (te <= self.playDuration):
|
||||||
if (self.firstTime):
|
if (self.firstTime):
|
||||||
self.setT(te, entry=1)
|
self.setT(te, entry=1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user