Difference between revisions of "AGENT CROUCHING"
Jump to navigation
Jump to search
m (hex) |
Omei Qunhua (talk | contribs) (Add example) |
||
Line 7: | Line 7: | ||
|text= | |text= | ||
|pb= | |pb= | ||
|examples | |examples= | ||
<lsl> | |||
// This is a code fragment only | |||
if (llGetAgentInfo( llGetOwner() ) & AGENT_CROUCHING) | |||
llSay(0, "I'm getting backache."); | |||
</lsl> | |||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> |
Revision as of 04:06, 23 December 2013
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer AGENT_CROUCHING = 0x0400;The integer constant AGENT_CROUCHING has the value 0x0400
Caveats
Related Articles
Functions
• | llGetAgentInfo |
Examples
<lsl>
// This is a code fragment only if (llGetAgentInfo( llGetOwner() ) & AGENT_CROUCHING) llSay(0, "I'm getting backache.");
</lsl>