RAGE.Game.Streaming.IsPlayerSwitchInProgress

From RAGE Multiplayer Wiki
Revision as of 14:40, 13 April 2019 by Reff (talk | contribs) (Created page with "Returns true if the player's client is currently switching, false otherwise. (When the camera is in the sky moving from Trevor to Franklin for example) == Syntax == <h5 styl...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Returns true if the player's client is currently switching, false otherwise. (When the camera is in the sky moving from Trevor to Franklin for example)

Syntax

RAGE.Game.Streaming.IsPlayerSwitchInProgress()


Example

C# Syntax

private bool IsPlayerSwitchInProgress()
{
    return RAGE.Game.Streaming.IsPlayerSwitchInProgress() ? true : false;
}