Version: 5.6
public static Object FindObjectOfType (Type type);

パラメーター

type 見つけるオブジェクトの型

戻り値

Object 指定した型で見つかったオブジェクトの配列を返します。ただし、Object型としてキャストされています。

説明

タイプ 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.

関連項目: Object.FindObjectsOfType.

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"); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961