Difference between revisions of "LlForceMouselook"
Jump to navigation
Jump to search
Kaluura Boa (talk | contribs) m (Added a link to llGetCameraRot()) |
m |
||
(4 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{LSL_Function | {{LSL_Function | ||
|inject-2={{LSL Function/boolean|mouselook|bool=*|if=*|default=false|td=when an avatar sits on the prim, the avatar will be forced into [[mouselook]] mode||fd=the avatar will keep their current camera mode.|th=when an avatar sits on the prim, the avatar will be forced into mouselook mode}} | |||
|func_id=294|func_sleep=0.0|func_energy=10.0 | |func_id=294|func_sleep=0.0|func_energy=10.0 | ||
|func=llForceMouselook | |func=llForceMouselook | ||
|p1_type=integer | |p1_type=integer|p1_subtype=boolean|p1_name=mouselook | ||
|p1_name=mouselook | |p1_desc | ||
|p1_desc | |||
|func_footnote=A [[llSitTarget|sit target]] is not necessary for this function to work. | |func_footnote=A [[llSitTarget|sit target]] is not necessary for this function to work. | ||
|func_desc=Sets if a sitting avatar should be forced into [[mouselook]] when they sit on this prim. | |func_desc=Sets if a sitting avatar should be forced into [[mouselook]] when they sit on this prim. | ||
Line 17: | Line 17: | ||
|examples= | |examples= | ||
'''Force Mouselook on Sit''' | '''Force Mouselook on Sit''' | ||
< | <source lang="lsl2">default | ||
{ | { | ||
state_entry() | state_entry() | ||
Line 26: | Line 26: | ||
// ...as with a newly created prim. | // ...as with a newly created prim. | ||
} | } | ||
}</ | }</source> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||[[llAvatarOnSitTarget]]|}} | |also_functions={{LSL DefineRow||[[llAvatarOnSitTarget]]|}} |
Latest revision as of 00:25, 22 January 2015
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: llForceMouselook( integer mouselook );0.0 | Forced Delay |
10.0 | Energy |
Sets if a sitting avatar should be forced into mouselook when they sit on this prim.
• integer | mouselook | – | boolean, if TRUE when an avatar sits on the prim, the avatar will be forced into mouselook mode, if FALSE (default) the avatar will keep their current camera mode. |
A sit target is not necessary for this function to work.
Caveats
- This function has no effect on avatars already seated.
- The user may exit mouselook mode at any time.
- This can be detected by polling llGetAgentInfo.
- There is nothing stopping someone from modifying or making a client that ignores this.
Examples
Force Mouselook on Sit
default
{
state_entry()
{
llForceMouselook(TRUE); // Forces sitting avatars into mouselook.
llForceMouselook(FALSE); // Reverts the setting to the default...
// ...as with a newly created prim.
}
}
See Also
Functions
• | llAvatarOnSitTarget | |||
• | llGetAgentInfo | |||
• | llGetCameraRot | |||
• | llSetCameraAtOffset | |||
• | llSetCameraEyeOffset |