Land collision start
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Description
Event: land_collision_start( vector pos ){ ; }| 8 | Event ID |
Triggered when task starts colliding with land
| • vector | pos | – | position of collision with the ground |
Examples
//Put script into physical object and drop to ground. It will say position of initial impact. default { land_collision_start( vector pos ) { llOwnerSay("Land collision at: "+(string) pos.x + ","+(string) pos.y+","+(string)pos.z); } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

