llGetLocalPos

From Second Life Wiki
Revision as of 06:41, 11 September 2008 by Gregory McLeod (talk | contribs) (Typo correction)
Jump to navigation Jump to search

Summary

Function: vector llGetLocalPos( );

Returns a vector that is the position relative (local) to the root.

If called from the root prim it returns the position in the region unless it is attached to which it returns the position relative to the attach point.

Examples

<lsl> default(

 touch_start( integer vIntTouched )
   string vStrMessage = "The touched prim is ";
   if (llDetectedLinkNumber( 0 ) > 1){
     vStrMessage += (string)llVecMag( llGetLocalPos() ) + "m from "
   }
   llSay( 0, vStrMessage + "the root prim" );
 }

}

</lsl>

Useful Snippets

There is no llSetLocalPos function. To set the position of a root prim local to itself you would have to do something like: <lsl> SetLocalPosition(vector local_position) {

  vector root_position = llGetPos();
  vector absolute_position = root_position + local_position;
  llSetPos(absolute_position);

} </lsl>

See Also

Functions

•  llGetRootPosition Gets the root prims global position
•  llGetPos Gets the prims global position
•  llSetPos Sets the prims global position

Deep Notes

Search JIRA for related Issues

Signature

function vector llGetLocalPos();