Collision
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Contents |
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
Events
| • | collision_start | |||
| • | collision_end |
Functions
| • | llPassCollisions | |||
| • | llCollisionFilter | |||
| • | llCollisionSound | |||
| • | llCollisionSprite | |||
| • | llVolumeDetect |
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

