mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -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
|
||||
self.fOpenEnded = openEnded
|
||||
|
||||
def __del__(self):
|
||||
print 'Interval destructing'
|
||||
|
||||
def getName(self):
|
||||
""" getName()
|
||||
"""
|
||||
|
@ -16,9 +16,6 @@ class LerpInterval(Interval):
|
||||
# Initialize superclass
|
||||
Interval.__init__(self, name, duration)
|
||||
|
||||
def __del__(self):
|
||||
print 'LerpInterval destructing'
|
||||
|
||||
def updateFunc(self, t, event = IVAL_NONE):
|
||||
""" updateFunc(t, event)
|
||||
"""
|
||||
@ -187,9 +184,6 @@ class LerpPosHprInterval(LerpInterval):
|
||||
# Initialize superclass
|
||||
LerpInterval.__init__(self, name, duration, functorFunc, blendType)
|
||||
|
||||
def __del__(self):
|
||||
print 'LerpPosHprInterval destructing'
|
||||
|
||||
class LerpPosHprScaleInterval(LerpInterval):
|
||||
# Interval counter
|
||||
lerpPosHprScaleNum = 1
|
||||
|
@ -20,9 +20,6 @@ class MultiTrack(Interval):
|
||||
# Initialize superclass
|
||||
Interval.__init__(self, name, duration)
|
||||
|
||||
def __del__(self):
|
||||
print 'MultiTrack destructing'
|
||||
|
||||
# Access track at given index
|
||||
def __getitem__(self, item):
|
||||
return self.tlist[item]
|
||||
|
@ -32,9 +32,6 @@ class Track(Interval):
|
||||
# Initialize superclass
|
||||
Interval.__init__(self, name, duration)
|
||||
|
||||
def __del__(self):
|
||||
print 'Track destructing'
|
||||
|
||||
# Access interval at given index
|
||||
def __getitem__(self, item):
|
||||
return self.ilist[item]
|
||||
|
Loading…
x
Reference in New Issue
Block a user