mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 19:08:55 -04:00
*** empty log message ***
This commit is contained in:
parent
ba2f68815c
commit
290225e5a3
@ -29,9 +29,6 @@ class Interval(DirectObject):
|
|||||||
# Set true if interval responds to setT(t): t>duration
|
# Set true if interval responds to setT(t): t>duration
|
||||||
self.fOpenEnded = openEnded
|
self.fOpenEnded = openEnded
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
print 'Interval destructing'
|
|
||||||
|
|
||||||
def getName(self):
|
def getName(self):
|
||||||
""" getName()
|
""" getName()
|
||||||
"""
|
"""
|
||||||
|
@ -16,9 +16,6 @@ class LerpInterval(Interval):
|
|||||||
# Initialize superclass
|
# Initialize superclass
|
||||||
Interval.__init__(self, name, duration)
|
Interval.__init__(self, name, duration)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
print 'LerpInterval destructing'
|
|
||||||
|
|
||||||
def updateFunc(self, t, event = IVAL_NONE):
|
def updateFunc(self, t, event = IVAL_NONE):
|
||||||
""" updateFunc(t, event)
|
""" updateFunc(t, event)
|
||||||
"""
|
"""
|
||||||
@ -187,9 +184,6 @@ class LerpPosHprInterval(LerpInterval):
|
|||||||
# Initialize superclass
|
# Initialize superclass
|
||||||
LerpInterval.__init__(self, name, duration, functorFunc, blendType)
|
LerpInterval.__init__(self, name, duration, functorFunc, blendType)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
print 'LerpPosHprInterval destructing'
|
|
||||||
|
|
||||||
class LerpPosHprScaleInterval(LerpInterval):
|
class LerpPosHprScaleInterval(LerpInterval):
|
||||||
# Interval counter
|
# Interval counter
|
||||||
lerpPosHprScaleNum = 1
|
lerpPosHprScaleNum = 1
|
||||||
|
@ -20,9 +20,6 @@ class MultiTrack(Interval):
|
|||||||
# Initialize superclass
|
# Initialize superclass
|
||||||
Interval.__init__(self, name, duration)
|
Interval.__init__(self, name, duration)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
print 'MultiTrack destructing'
|
|
||||||
|
|
||||||
# Access track at given index
|
# Access track at given index
|
||||||
def __getitem__(self, item):
|
def __getitem__(self, item):
|
||||||
return self.tlist[item]
|
return self.tlist[item]
|
||||||
|
@ -32,9 +32,6 @@ class Track(Interval):
|
|||||||
# Initialize superclass
|
# Initialize superclass
|
||||||
Interval.__init__(self, name, duration)
|
Interval.__init__(self, name, duration)
|
||||||
|
|
||||||
def __del__(self):
|
|
||||||
print 'Track destructing'
|
|
||||||
|
|
||||||
# Access interval at given index
|
# Access interval at given index
|
||||||
def __getitem__(self, item):
|
def __getitem__(self, item):
|
||||||
return self.ilist[item]
|
return self.ilist[item]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user