Difference between revisions of "LlGetLocalPos"

From Second Life Wiki
Jump to navigation Jump to search
m (Replaced <source> with <syntaxhighlight>; added Haiku generated with ChatGPT)
m (Minor LSL style editing (to make it uniform with the rest of the LSL Portal))
 
Line 13: Line 13:
default
default
{
{
  touch_start( integer vIntTouched )
    touch_start(integer vIntTouched)
  {
    string vStrMessage = "The touched prim is ";
    if (llDetectedLinkNumber( 0 ) > 1)
     {
     {
      vStrMessage += (string)llVecMag( llGetLocalPos() ) + "m from ";
        string vStrMessage = "The touched prim is ";
        if (llDetectedLinkNumber(0) > 1)
        {
            vStrMessage += (string)llVecMag(llGetLocalPos()) + "m from ";
        }
        llSay(0, vStrMessage + "the root prim");
     }
     }
    llSay( 0, vStrMessage + "the root prim" );
  }
}
}
</syntaxhighlight>
</syntaxhighlight>
Line 30: Line 30:
SetPositionLocalToCurrentPosition(vector local_position)
SetPositionLocalToCurrentPosition(vector local_position)
{
{
  llSetPos(llGetLocalPos() + (local_position * llGetLocalRot()));
    llSetPos(llGetLocalPos() + (local_position * llGetLocalRot()));
}
}
</syntaxhighlight>
</syntaxhighlight>
Line 37: Line 37:
SetPositionLocalToCurrentPosition(vector local_position)
SetPositionLocalToCurrentPosition(vector local_position)
{
{
  llSetPos(llGetPos() + (local_position * llGetRot()));
    llSetPos(llGetPos() + (local_position * llGetRot()));
}
}
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 09:29, 27 May 2024

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

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

Useful Snippets

There is no function to set the position of a prim local to itself. To set the position of a prim local to itself you would have to do something like:

SetPositionLocalToCurrentPosition(vector local_position)
{
    llSetPos(llGetLocalPos() + (local_position * llGetLocalRot()));
}

Or:

SetPositionLocalToCurrentPosition(vector local_position)
{
    llSetPos(llGetPos() + (local_position * llGetRot()));
}

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();

Haiku

Root's vector winks,
Lost in local's labyrinth,
Attach point's secret.
— ChatGPT