Forgot? Join

Scripting

LSL Guide

Every script function this grid actually runs, read straight from the region software rather than copied from a wiki — including the wolf* functions that exist only here.

Functions · Constants

llSetLinkPrimitiveParamsFast

LSL
void llSetLinkPrimitiveParamsFast(integer linknum, list rules)

Set primitive parameters for LinkNumber based on Parameters, without a delay.\ Set parameters for link number, from the list of Parameters, with no built-in script sleep. This function is identical to llSetLinkPrimitiveParams, except without the delay.

Parameters

TypeName What it does
integer linknum
list rules PRIM_ rules: PRIM_COLOR, PRIM_TEXTURE, PRIM_GLOW, PRIM_FULLBRIGHT, PRIM_POSITION, PRIM_ROTATION, PRIM_SIZE …

Example

default
{
    touch_start(integer n)
    {
        llSetLinkPrimitiveParamsFast(LINK_THIS, [
            PRIM_COLOR,      ALL_SIDES, <0.2, 0.8, 1.0>, 1.0,
            PRIM_GLOW,       ALL_SIDES, 0.2,
            PRIM_FULLBRIGHT, ALL_SIDES, TRUE,
            PRIM_SIZE,       <1.0, 1.0, 0.1>
        ]);
    }
}
Energy 10

The Linden Scripting Library — what every SL-compatible grid provides.

More in LSL