LlGetPos

From Second Life Wiki

Jump to: navigation, search

Function: vector llGetPos( );

59 Function ID
0.0 Delay
10.0 Energy

Returns a vector that is the prim's region position


Examples

 
default
{
    touch_start(integer total_number)
    {
        // When touched, check the position of
        // the object, save it to "position",
        // then convert it into a string and
        // say it.
        vector position = llGetPos();
        llSay(0, (string)position);
    }
}
 

See Also

Functions

•  llGetRootPosition Gets the root prims position
•  llGetLocalPos Gets the prim local position
•  llGetPrimitiveParams Gets prim properties
•  llSetPos Sets the prim position
•  llSetPrimitiveParams Sets prim properties
•  llSetLinkPrimitiveParams Sets linked prim properties
Personal tools