*** empty log message ***

This commit is contained in:
David Rose 2001-05-10 00:03:23 +00:00
parent cd8b15642c
commit ea57ce30aa
1 changed files with 8 additions and 2 deletions

View File

@ -271,8 +271,14 @@
# upon death remove the functorFunc
def lerpUponDeath(task):
# Try to break circular references
del task.functorFunc
del task.lerp
try:
del task.functorFunc
except:
pass
try:
del task.lerp
except:
pass
# make the task function
def lerpTaskFunc(task):