Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

MonoBehaviour.OnApplicationFocus(bool)

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual

Descripción

Sent to all game objects when the player gets or loses focus.

OnApplicationFocus can be a co-routine; simply use the yield statement in the function.Implemented this way, it will be evaluated twice during the initial frame: first as an early notification and second time during the normal coroutine update step.

On Android, when the on-screen keyboard is enabled, it will cause OnApplicationFocus( false ) event. Also, if you press "home" at the moment the keyboard is enabled, the OnApplicationFocus() event won't get called, but OnApplicationPause() will be called instead.


        
using UnityEngine;

public class AppPaused : MonoBehaviour { bool isPaused = false;

void OnGUI( ) { if( isPaused ) GUI.Label( new Rect( 100, 100, 50, 30 ), "Game paused" ); }

void OnApplicationFocus( bool focusStatus ) { isPaused = focusStatus; }

void OnApplicationPause( bool pauseStatus ) { isPaused = pauseStatus; } }