Difference between revisions of "LlDetectedGrab"

From Second Life Wiki
Jump to navigation Jump to search
(cleanup)
m
Line 11: Line 11:
|constants
|constants
|examples
|examples
<lsl>
default
{
    state_entry()
    {
        llSetStatus(PRIM_PHYSICS,TRUE);
    }
    touch(integer num_detected)
    {
        llSay(0,(string)llDetectedGrab(0));
    }
}
</lsl>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llPassTouches]]|}}
|also_functions={{LSL DefineRow||[[llPassTouches]]|}}

Revision as of 08:28, 19 May 2009

Summary

Function: vector llDetectedGrab( integer number );

Returns a vector that is the grab offset of the user touching the object; only works in the touch event.

• integer number Index of detection information

number does not support negative indexes. Returns <0.0, 0.0, 0.0> if number is out of range or if called from an event other than the touch event.

Caveats

  • If number is out of bounds the script continues to execute without an error message.
All Issues ~ Search JIRA for related Bugs

Examples

See Also

Events

•  touch_start
•  touch
•  touch_end

Functions

•  llPassTouches
•  llSetStatus - STATUS_BLOCK_GRAB Enable / Disable object grabbing

Articles

•  Detected
•  Grab

Deep Notes

Search JIRA for related Issues

Signature

function vector llDetectedGrab( integer number );