Collision

From Second Life Wiki
Revision as of 17:53, 24 January 2008 by Asuka Neely (talk | contribs)
Jump to navigation Jump to search

Description

Event: collision( integer num_detected ){ ; }

Triggered while task is colliding with another task

• integer num_detected

Examples

//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);
        }
    }
}

See Also

Deep Notes

Signature

event void collision( integer num_detected );