doppio lampo (ogni 10 secondi) |
|
lampo() { // accende llSetPrimitiveParams([ PRIM_GLOW, ALL_SIDES, 1 , PRIM_POINT_LIGHT, TRUE, llGetColor(0), 1, 10.0, 0.6 ]); // spegne llSetPrimitiveParams([ PRIM_GLOW, ALL_SIDES, 0 , PRIM_POINT_LIGHT, FALSE, llGetColor(0), 1, 10.0, 0.6 ]); } default { state_entry() { llSetTimerEvent(10); } timer() { lampo(); lampo(); } } |