RandomPrimParams

From Second Life Wiki
Revision as of 20:59, 29 April 2012 by Strife Onizuka (talk | contribs) (cleanup)
Jump to navigation Jump to search

Simple script to show how to set random primitive parameters. <lsl>default {

   state_entry() {
       llSetTimerEvent(0.2); // How fast repeat event
   }
   timer() {
       vector color = <llFrand(1.0), llFrand(1.0), llFrand(1.0)>;//<r,g,b>
       llSetLinkPrimitiveParamsFast(LINK_SET, [PRIM_COLOR, ALL_SIDES, color, 1.0]); // You can use any PrimParams here like for example PRIM_GLOW
   }

}</lsl>