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.

Object.FindObjectOfType

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
public static function FindObjectOfType(type: Type): Object;
public static Object FindObjectOfType(Type type);

Parámetros

type El nombre del objeto.

Valor de retorno

Object An array of objects which matched the specified type, cast as Object.

Descripción

Devuelve el primer objeto activo cargado de tipo type.

Please note that this function is very slow. It is not recommended to use this function every frame. In most cases you can use the singleton pattern instead.

See Also: Object.FindObjectsOfType.

// Search for any object of Type GUITexture, 
// if found print its name, else print a message
// that says that it was not found.
function Start() {

var texture : GUITexture = FindObjectOfType(GUITexture); if(texture) Debug.Log("GUITexture object found: " + texture.name); else Debug.Log("No GUITexture object could be found");

}
using UnityEngine;
using System.Collections;

// Search for any object of Type GUITexture, // if found print its name, else print a message // that says that it was not found. public class ExampleClass : MonoBehaviour { void Start() { GUITexture texture = (GUITexture) FindObjectOfType(typeof(GUITexture)); if (texture) Debug.Log("GUITexture object found: " + texture.name); else Debug.Log("No GUITexture object could be found"); } }