LlSetBuoyancy
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Summary
Function: llSetBuoyancy( float buoyancy );| 122 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Sets the buoyancy of the task or object. Requires physics to be enabled.
| • float | buoyancy |
if (buoyancy == 0.0) disables
if (buoyancy < 1.0) sinks
if (buoyancy == 1.0) floats
if (buoyancy > 1.0) rises
Caveats
Examples
Makes an object float up slowly (e.g. a red balloon)
default { state_entry() { llSetStatus(STATUS_PHYSICS, TRUE); llSetBuoyancy(1.05); } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

