Difference between revisions of "AGENT MOUSELOOK"
Jump to navigation
Jump to search
Pedro Oval (talk | contribs) m (Add LSL_Mouselook category) |
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_MOUSELOOK) | |||
llSay(0, "Wee tim'rous beastie, where art thou?"); | |||
</lsl> | |||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> |
Revision as of 05:01, 23 December 2013
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
<lsl>
// This is a code fragment only if (llGetAgentInfo( llGetOwner() ) & AGENT_MOUSELOOK) llSay(0, "Wee tim'rous beastie, where art thou?");
</lsl>