Difference between revisions of "Collision"

From Second Life Wiki
Jump to navigation Jump to search
(<lsl> example)
m
Line 32: Line 32:
|also_footer
|also_footer
|notes
|notes
|mode
|issues=
|deprecated
{{Issue|SVC-3306|{{LSLGC|Collision}}s passed to parent REGARDLESS [[llPassCollisions]]([[FALSE]]) in child|type=bug}}
|cat1=Collision
|cat1=Collision
|cat2=Detected
|cat2=Detected
|cat3
|cat3
|cat4}}
|cat4}}

Revision as of 10:35, 25 October 2008

Description

! Event: collision( integer num_detected ){ ; }

Triggered while task is colliding with another task

• integer num_detected

Examples

<lsl>//Will turn phantom when someone bumps into it if on the list

list access_list = ["Governor Linden"];

default {

   collision(integer num_detected)
   {
       if(~llListFindList(access_list, (list)llDetectedName(0)))
       {
           llSetStatus(STATUS_PHANTOM, TRUE);
       }
   }

}</lsl>

See Also

Deep Notes

Issues

All Issues

~ Search JIRA for related Issues
   Collisions passed to parent REGARDLESS llPassCollisions(FALSE) in child

Signature

event void collision( integer num_detected );