Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Object.FindObjectOfType

Предложить изменения

Успех!

Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.

Закрыть

Ошибка внесения изменений

По определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.

Закрыть

Отменить

Руководство
public static function FindObjectOfType(type: Type): Object;
public static Object FindObjectOfType(Type type);

Параметры

type The type of object to find.

Возврат значений

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

Описание

Returns the first active loaded object of Type 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"); } }