llSetLinkPrimitiveParamsFast
LSLvoid 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
| Type | Name | 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
key llDataSizeKeyValue()
key llUpdateKeyValue(string key, string value, integer check, string original)
vector llDetectedTouchPos(integer index)
string llGetNotecardLineSync(string name, integer line)
integer llRound(float f)
float llGetRegionFPS()
void llRezAtRoot(string inventory, vector position, vector velocity, rotation rot, integer param)
list llJson2List(string json)