AGENT FLOATING VIA SCRIPTED ATTACHMENT
Revision as of 14:57, 4 December 2024 by Leviathan Linden (talk | contribs) (Adding info about AGENT_FLOATING_VIA_SCRIPTED_ATTACHMENT)
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer AGENT_FLOATING_VIA_SCRIPTED_ATTACHMENT = 0x8000;The integer constant AGENT_FLOATING_VIA_SCRIPTED_ATTACHMENT has the value 0x8000
Indicates that the agent is floating because of a scripted attachment using either llSetHoverHeight or llGroundRepel.
Caveats
Not available until server v2024.11-Apple_Cobbler
Related Articles
Functions
• | llGetAgentInfo |
Examples
// This is a code fragment only
if (llGetAgentInfo( llGetOwner() ) & AGENT_FLOATING_VIA_SCRIPTED_ATTACHMENT)
llSay(0, "You're walking on air!");