Hi guys Using the code available here (http://away3d.googlecode.com/svn/trunk/ fp9/Examples/Collada/src/) ive made an animation apply itself to a model succesfully, all looks cool and stuff, but the problem is i need to reset the animation every so often, looking at the skin animation class i know to reset the animation they use the line of code:
time = start + (time - start) % length; now ive tried recreating this, but mine always seems to come in at some random point during the animation anyone got any ideas to how i could do this? my current attempt is: skinAnimation.update(start + (getTimer() / 1000)-start % length); thanks guys :D
