Difference between revisions of "Land collision"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
{{LSL_Event
{{Issues/SVC-3304}}{{LSL_Event
|event_id=9
|event_id=9
|event_delay
|event_delay
Line 27: Line 27:
|mode
|mode
|deprecated
|deprecated
|issues=
|issues
{{Issue|SVC-3304|presence of {{LSLGC|Collision|collision}}* events influencing {{LSLGC|Land_Collision|land_collision}}* events|type=bug}}
|cat1=Collision
|cat1=Collision
|cat2=Ground
|cat2=Ground

Revision as of 10:56, 25 October 2008

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