LlGround
From Second Life Wiki
| Languages: |
English • Deutsch • Español • ελληνικά • Français • עברית • Italiano • 日本語 • 한국어 • Nederlands • Magyar • Norsk • Dansk • Svenska • Türkçe • Polski • Português • Русский • украї́нська • 中文(简体) • 中文(繁體) |
| Volunteer translated pages are linked in blue, Google translated pages are linked in grey. Learn how to provide volunteer translations. | |
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Summary
Function: float llGround( vector offset );| 42 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns a float that is the ground height directly below the prim plus an offset
| • vector | offset |
Only the X and Y coordinates of the offset are important.
Examples
// Get the object to land on the ground or on the water // by Konigmann Lippmann & Strife Onizuka FindGroundOrWater() { float fHeight = llGround( ZERO_VECTOR ); float fWaterLevel = llWater( ZERO_VECTOR ); if( fHeight < fWaterLevel ) fHeight = fWaterLevel; vector vTarget = llGetPos(); //llSetPos can only move 10m at a time. integer iCounter = 1 + llAbs((integer)(vTarget.z - fHeight) / 10); vTarget.z = fHeight; do llSetPos( vTarget ); while( --iCounter ); } default { touch_start(integer total_number) { FindGroundOrWater(); } }
See Also
Functions
| • | llGroundContour | – | Gets the ground contour | |
| • | llGroundNormal | – | Gets the ground normal | |
| • | llGroundSlope | – | Gets the ground slope | |
| • | llEdgeOfWorld | – | Returns existence of neighboring sims |
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

