Hi all, I am first time learning animation. I create two new BABYLON.Animation
, [movein,rotate]
, and their keyframe is until 8 * frameRate
.
scene.beginDirectAnimation(camera, [movein,rotate], 0* frameRate, 1 * frameRate, false);
After I call the above function, I want the animation only works for the first frameRate. After the first frameRate, all animation reaches the end frameRate. It confuses me.
https://playground.babylonjs.com/#WDWEJK