Land collision

From Second Life Wiki
Revision as of 10:56, 25 October 2008 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

Description

Event: land_collision( vector pos ){ ; }

Triggered when task is colliding with land

• vector pos position of collision with the ground

Examples

<lsl>//Will die on collision with land. default {

    land_collision(vector pos)
    {
         llDie();
    }

}</lsl>

See Also

Functions

•  llGround Gets the ground height

Deep Notes

Issues

All Issues

~ Search JIRA for related Issues
   presence of collision* events influencing land_collision* events

Signature

event void land_collision( vector pos );