Hey, i have problem witch animation. My apllication start animation and stop. Causing the animation to continue to be visible. Can you remove it? Best regards
this.animacja1 = new AR.ModelAnimation(this.modelSamolot, "Lewe_kolo_animation");
...switch (k) { case 1: animacjastop(); World.animacja1.start(-1); break;
...
function animacjastop(){ if(World.animacja1.isRunning()){ World.animacja1.stop();}}
It's hard to fix via snippets only. Please try remote WebView debugging, check console output for potential runtime or syntax errors. Also log the values of World.animacja1.isRunning() before and after calling stop-function.
Sebastian Kuźmicz
Hey, i have problem witch animation. My apllication start animation and stop. Causing the animation to continue to be visible. Can you remove it? Best regards