I am trying to completely remove the KonvaJS animation from memory. There is a way to stop the animation, but I can't destroy it.
var anim = new Konva.Animation(function (frame) {
// some stuff
}, layer);
anim.start();
anim.destroy();
How do I completely destroy the animation?
Stopping animation should be enough to remove it from memory if you no longer use it.