Difference between revisions of "AGENT MOUSELOOK"
Jump to navigation
Jump to search
Omei Qunhua (talk | contribs) (add example) |
m (<lsl> tag to <source>) |
||
Line 8: | Line 8: | ||
|pb= | |pb= | ||
|examples= | |examples= | ||
< | <source lang="lsl2"> | ||
// This is a code fragment only | // This is a code fragment only | ||
if (llGetAgentInfo( llGetOwner() ) & AGENT_MOUSELOOK) | if (llGetAgentInfo( llGetOwner() ) & AGENT_MOUSELOOK) | ||
llSay(0, "Wee tim'rous beastie, where art thou?"); | llSay(0, "Wee tim'rous beastie, where art thou?"); | ||
</ | </source> | ||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> |
Latest revision as of 15:09, 22 January 2015
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer AGENT_MOUSELOOK = 0x0008;The integer constant AGENT_MOUSELOOK has the value 0x0008
Caveats
Related Articles
Functions
• | llGetAgentInfo |
Examples
// This is a code fragment only
if (llGetAgentInfo( llGetOwner() ) & AGENT_MOUSELOOK)
llSay(0, "Wee tim'rous beastie, where art thou?");