PRIM SIZE: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 23: | Line 23: | ||
|toc=llGetPrimitiveParams | |toc=llGetPrimitiveParams | ||
}} | }} | ||
|examples | |examples= | ||
<lsl> | |||
Use thePRIM_SIZE and ad an (,) after that the size you want. | |||
<lsl> | |||
//MathieuBC Noel scripter | //MathieuBC Noel scripter | ||
touch_start(integer total_number) | |||
{ | { | ||
llSetPos( llGetScale( )+ llGetPos() + <0,0,-1>); | llSetPos( llGetScale( )+ llGetPos() + <0,0,-1>); | ||
| Line 42: | Line 40: | ||
} | } | ||
} | } </lsl> | ||
</lsl> | |||
|constants= | |constants= | ||
Revision as of 10:34, 6 December 2008
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer PRIM_SIZE = 7;The integer constant PRIM_SIZE has the value 7
Returns or sets the prim's size.
llSetPrimitiveParams
[ PRIM_SIZE, vector size ]| • vector | size | – | ranges from 0.01 to 10.0 for x, y and z |
When used with llSetPrimitiveParams & llSetLinkPrimitiveParams
llGetPrimitiveParams
llGetPrimitiveParams([ PRIM_SIZE ]);Returns the list [ vector size ]
| • vector | size | – | ranges from 0.01 to 10.0 for x, y and z |
Caveats
Related Articles
Functions
| • | llGetPrimitiveParams | |||
| • | llSetPrimitiveParams | |||
| • | llSetLinkPrimitiveParams | |||
| • | llGetScale | |||
| • | llSetScale |
Examples
Use thePRIM_SIZE and ad an (,) after that the size you want. <lsl>
//MathieuBC Noel scripter touch_start(integer total_number) {
llSetPos( llGetScale( )+ llGetPos() + <0,0,-1>);
llGetPrimitiveParams([ PRIM_SIZE, <1.148,0.081,0.313> ]);
}
}
} </lsl>