mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
18 lines
458 B
Python
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
|
|
|