Difference between revisions of "Collision end"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 24: Line 24:
|cat1=Collision
|cat1=Collision
|cat2=Detected
|cat2=Detected
|cat3
|cat3=Collision Events
|cat4}}
|cat4}}

Revision as of 15:51, 17 October 2009

Description

Event: collision_end( integer num_detected ){ ; }

Triggered when task stops colliding with another task

• integer num_detected

Caveats

  • This event does not always trigger reliably.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>collision_end(integer total_number) {

   llOwnerSay("The collison I've had with " + llDetectedName(0) + "has ended.");

}</lsl>

See Also

Deep Notes

Issues

All Issues

~ Search JIRA for related Issues
   Add enumeration to llPassCollisions() to provide PASS_ALWAYS, PASS_IF_NOT_HANDLED, and PASS_NEVER as explicit options.
(Was: Collisions passed to parent REGARDLESS llPassCollisions(FALSE) in child)

Signature

event void collision_end( integer num_detected );