Land collision start

From Second Life Wiki
Revision as of 01:25, 22 January 2015 by Lady Sumoku (talk | contribs) (Replaced old <LSL> block with <source lang="lsl2">)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

Event: land_collision_start( vector pos ){ ; }

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

See Also

Events

•  land_collision
•  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_start( vector pos );