Player::isClimbing

From RAGE Multiplayer Wiki
Revision as of 19:28, 4 January 2017 by Niks (talk | contribs) (Created page with "This property returns true or false of player climbing state. '''Note: this property is read-only.''' == Example == <source lang="javascript"> let playerIsClimbing = player.i...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This property returns true or false of player climbing state.

Note: this property is read-only.

Example

let playerIsClimbing = player.isClimbing
if (playerIsClimbing)
  player.outputChatBox('You are climbing now!');
else
  player.outputChatBox('You are not climbing right now!');