| GameLiftManagerOnApplicationPause Method |
Used to make sure Android devices can disconnect from the GameLift servers. This function will quit the application when it loses focus
e.g., when you exit the app to the home screen. Doing so is a good thing and prevents hanging connections.
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax private void OnApplicationPause(
bool _isPaused
)
Private Sub OnApplicationPause (
_isPaused As Boolean
)
private:
void OnApplicationPause(
bool _isPaused
)
private member OnApplicationPause :
_isPaused : bool -> unit
Parameters
- _isPaused
- Type: SystemBoolean
flag representing if the app is paused or not
See Also