Poodletooth-iLand/panda/direct/interval/ProjectileIntervalTest.py
2015-03-03 17:10:12 -05:00

18 lines
458 B
Python

"""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