Difference between revisions of "LlGetPos"

From Second Life Wiki
Jump to navigation Jump to search
(llGetRegionName doesn't seem appropriate here...)
(added a caveat as suggested in VWR-1794)
Line 5: Line 5:
|func_footnote
|func_footnote
|func_desc
|func_desc
|return_text=that is the prim's [[Viewer coordinate frames#Region|region]] position
|return_text=that is the the position of the task in [[Viewer coordinate frames#Region|region]] coordinates
|spec
|spec
|caveats
|caveats=*When called from the root of an attachment, returns the wearer's position. When called in any child prim, always returns that prim's region position.
|constants
|constants
|examples=<lsl>
|examples=<lsl>

Revision as of 13:09, 29 September 2009

Summary

Function: vector llGetPos( );

Returns a vector that is the the position of the task in region coordinates

Caveats

  • When called from the root of an attachment, returns the wearer's position. When called in any child prim, always returns that prim's region position.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> 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);
   }

}

</lsl>

See Also

Functions

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

Deep Notes

Search JIRA for related Issues

Signature

function vector llGetPos();