How do I destroy the KonvaJs animation from the memory footprint?

66 Views Asked by At

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?

1

There are 1 best solutions below

1
On

Stopping animation should be enough to remove it from memory if you no longer use it.