var animationBox = new BABYLON.Animation("tutoAnimation", "position", 30, BABYLON.Animation.ANIMATIONTYPE_VECTOR3, BABYLON.Animation.ANIMATIONLOOPMODE_CONSTANT); i use it to do a animation but when the animation is end i cant change the position any more box.actionManager.registerAction(new BABYLON.ExecuteCodeAction(BABYLON.ActionManager.OnPickTrigger, function(){ box.position = new BABYLON.Vector3(box.position.x-10,box.position.y,box.position.z); })) i change position this way before to do the animation its work well but when the animation is end it cant work any more whats wrong with it?