Touch

From Second Life Wiki
Revision as of 06:33, 1 December 2007 by Ricky Geesink (talk | contribs) (llSetTouchText)
Jump to navigation Jump to search

Description

Event: touch( integer num_detected ){ ; }

Triggered whilst an agent is clicking the task. It will continue to be triggered until the the prim/object is stopped being clicked (it triggers multiple times).

• integer num_detected

Examples

default {
     touch(integer num_detected) {
          llOwnerSay("I am being touched by " + llDetectedName(0) + ".");
     }
}

See Also

Events

•  touch_start
•  touch_end

Functions

Template:LlSetTouchText
•  llPassTouches Allows clicks captured by a child prim to be passed to the root as well

Deep Notes

Signature

event void touch( integer num_detected );