Difference between revisions of "Land collision end"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 6: Line 6:
|spec
|spec
|caveats
|caveats
|examples
|examples=<lsl>
default
{
    land_collision_start(vector pos)
    {
        llOwnerSay("Colliding with land.");
    }
    land_collision_end(vector pos)
    {
        llOwnerSay("Stopped colliding with land.");
    }
}
</lsl>
|helpers
|helpers
|also_header=
|also_header=

Revision as of 19:39, 19 August 2010

Description

Event: land_collision_end( vector pos ){ ; }

Triggered when task stops colliding with land

• vector pos position of last collision with the ground

Examples

<lsl> default {

   land_collision_start(vector pos)
   {
       llOwnerSay("Colliding with land.");
   }
   land_collision_end(vector pos)
   {
       llOwnerSay("Stopped colliding with land.");
   }

} </lsl>

See Also

Events

•  land_collision_start transition to starting land collision
•  land_collision

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_end( vector pos );