Difference between revisions of "Land collision"

From Second Life Wiki
Jump to navigation Jump to search
m (~tweak)
(10 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{LSL_Event
{{Issues/SVC-3304}}{{LSL_Event
|event_id=9
|event_id=9
|event_delay
|event_delay
Line 6: Line 6:
|p1_name=pos
|p1_name=pos
|p1_desc=position of collision with the ground
|p1_desc=position of collision with the ground
|event_desc=Triggered when task is colliding with land
|event_desc=Triggered in the root when physical object or attached avatar is colliding with land
|constants
|constants
|spec
|spec
|caveats
|caveats
|examples
|examples=<lsl>//Will die on collision with land.
default
{
    land_collision(vector pos)
    {
          llDie();
    }
}</lsl>
|helpers
|helpers
|also_header=*{{LSLGC|Collision|Collision events & functions}}
|also_header=
|also_events
*{{LSLGC|Collision|Collision events & functions}}
|also_functions={{LSL DefineRow||[[llGetGround]]|}}
|also_events=
{{LSL DefineRow||[[land_collision_start]]|}}
{{LSL DefineRow||[[land_collision_end]]|}}
|also_functions=
{{LSL DefineRow||[[llGround]]|Gets the ground height}}
|also_articles
|also_articles
|also_footer
|also_footer
Line 20: Line 31:
|mode
|mode
|deprecated
|deprecated
|cat1=Land Collision
|issues
|cat2
|cat1=Collision
|cat3
|cat2=Ground
|cat3=Land Collision
|cat4
|cat4
|cat5
|cat5
|cat6
|cat6
}}
}}

Revision as of 01:05, 26 November 2010

Description

Event: land_collision( vector pos ){ ; }

Triggered in the root when physical object or attached avatar 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

Events

•  land_collision_start
•  land_collision_end

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