What steps will reproduce the problem?
1. ogre = parser.getParsedAnimationObject();
//"com.example.min3dengine:raw/ogro"
2. ogre.play("run", true);
3. scene.addChild(ogre);
What is the expected output? What do you see instead?
There is a bug in the in the between-frames interpolation alg. For example:
The "com.example.min3dengine:raw/ogro" RUN loop animation should be played from
frame 40 to 45 and the last frame should be interpolated between 45 and 40 (not
45 and 46 as it is now).
What version of the product are you using? On what operating system?
mac os, the latest version from svn
Please provide any additional information below.
In AnimatedObject3d in update() function I have added:
if(currentFrameName != null && !currentFrameName.equals(nextFrame.getName()))
{
nextFrame = frames[loopStartIndex]; // <-- close the loop
}
Original issue reported on code.google.com by rkozik.utp@gmail.com on 26 Dec 2013 at 4:08
Original issue reported on code.google.com by
rkozik.utp@gmail.com
on 26 Dec 2013 at 4:08