Touch end
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
ExamplesYou can use numbers 0 through num_detected - 1 to get detected agent keys: float t; default { touch_start(integer num_detected) { t = llGetTime(); } touch_end(integer num_detected) { llOwnerSay((string)(llGetTime() - t) + " seconds between touch_start and touch_end"); } } |

