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.

RuntimeInitializeOnLoadMethodAttribute

class in UnityEngine

/

Hereda de:Scripting.PreserveAttribute

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

Allow an runtime class method to be initialized when Unity game loads runtime without action from the user.

Methods marked [RuntimeInitializeOnLoadMethod] are invoked after scene has been loaded (i.e. after Awake method has been invoked). Note: Order of execution of methods marked [RuntimeInitializeOnLoadMethod] is not guaranteed.


        
using UnityEngine;

class MyClass { [RuntimeInitializeOnLoadMethod] static void OnRuntimeMethodLoad () { Debug.Log("After scene is loaded and game is running"); }

[RuntimeInitializeOnLoadMethod] static void OnSecondRuntimeMethodLoad () { Debug.Log("SecondMethod After scene is loaded and game is running."); } }

Variables

loadTypeSet RuntimeInitializeOnLoadMethod type.

Constructores

RuntimeInitializeOnLoadMethodAttributeAllow an runtime class method to be initialized when Unity game loads runtime without action from the user.

Miembros heredados