|
Carlos Cameron
Registered User
Join date: 28 Jun 2006
Posts: 128
|
05-21-2009 05:58
What is the name of the script to delete animation scripts in a prim? For instance: I have a prim but it has a water script runnning inside of it. I want to use that same prim but without the moving animation. I delete the script but it continues to flow but I want to make it stop.
Whats the name of this script and where can I buy it?
Thank You
|
|
Viktoria Dovgal
…
Join date: 29 Jul 2007
Posts: 3,593
|
05-21-2009 06:16
OK, so you have a particle system embedded in the object? You do not need to buy anything, there are tiny scripts you can copy and paste into the prim to fix this. There is a list of these here: http://wiki.secondlife.com/wiki/Remove_Prim_PropertiesTo save a few clicks:
default { state_entry() { llParticleSystem([]); llSetTextureAnim(FALSE, ALL_SIDES, 0, 0, 0.0, 0.0, 1.0); llRemoveInventory(llGetScriptName()); } }
|