panda3d/direct/src/interval/ProjectileIntervalTest.py
2006-08-09 20:49:19 +00:00

19 lines
458 B
Python
Executable File

"""Undocumented Module"""
__all__ = ['doTest']
from pandac.PandaModules import *
from direct.directbase.DirectStart import *
from IntervalGlobal import *
def doTest():
smiley = loader.loadModel('models/misc/smiley')
smiley.reparentTo(render)
pi = ProjectileInterval(smiley, startPos=Point3(0, 0, 0),
endZ = -10, wayPoint=Point3(10, 0, 0),
timeToWayPoint=3)
pi.loop()
return pi