How to remove animation?

Can’ stop and remove the animation.

I’ve tried the following:

            burn[index]:clean("burn")             burn[index] = nil

Done like so:

[lua]

burn[index]:destroyMaster()

burn[index]=nil

[/lua]

[EDIT]: That’s how you destroy a VentGroup. If you just want to stop the emitting you can use this:

[lua]

burn[index]:stop(“burn”)

[/lua]

  • C :slight_smile:

Worked. Thanks.

Done like so:

[lua]

burn[index]:destroyMaster()

burn[index]=nil

[/lua]

[EDIT]: That’s how you destroy a VentGroup. If you just want to stop the emitting you can use this:

[lua]

burn[index]:stop(“burn”)

[/lua]

  • C :slight_smile:

Worked. Thanks.