Can’ stop and remove the animation.
I’ve tried the following:
burn[index]:clean("burn") burn[index] = nil
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]
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]
Worked. Thanks.