Player::isPlayerFreeAiming: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(Undo revision 21052 by Shr0x (talk))
Tag: Undo
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Gets a value indicating whether the specified player is currently aiming freely.
Gets a value indicating whether the specified player is currently aiming freely.
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">player.isPlayerFreeAiming();</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.player.isPlayerFreeAiming();</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
===Return value===
===Return value===
Line 7: Line 7:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Player_function_c}}
{{Player_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 18:37, 21 August 2021

Gets a value indicating whether the specified player is currently aiming freely.

Syntax

mp.game.player.isPlayerFreeAiming();

Required Arguments

Return value

  • Boolean

Example

// todo

See also