Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Make my (deleted) particle emitter stop emitting!

Treacly Brodsky
Pixel SLinger
Join date: 23 Jul 2004
Posts: 186
02-12-2005 10:50
This seems silly; Yesterday I put a particle emitter script into a prim. Not liking the results, I then proceded to take the script out of the object. Well the particles keep on spewing and I cannot figure out why! I've reloged twice since I removed the script and double and tripple checked to make sure the script was not still hiding in the object. Sure enough there is no partcile emitter script there at all!!! Why wont it stop spitting particles?

Thanks :confused:
_____________________
Zuzi Martinez
goth dachshund
Join date: 4 Sep 2004
Posts: 1,860
02-12-2005 10:57
put in.......
CODE
default {
state_entry() {
llParticleSystem([]);
}
}

particle systems are like floating text. they just become a client side part of the prim once they start and don't stop just cause the script is gone. if you want to get rid of them you have to tell them to turn off.
Treacly Brodsky
Pixel SLinger
Join date: 23 Jul 2004
Posts: 186
02-12-2005 11:29
Thank you Zuzi

:)
_____________________