版本: Unity 6 (6000.0)
语言English
  • C#

EditorGUIUtility.ObjectContent

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实会阅读用户提出的每个建议更改,并在适用时进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static GUIContent ObjectContent(Object obj, Type type);

描述

返回一个包含对象名称和图标的 GUIContent 对象。

如果对象为空,则将根据类型选择图标。


对象内容用法。

// Simple Editor Script that shows the icons of Transform,
// rigidbody and GameObject in 3 buttons.

using UnityEditor; using UnityEngine;

public class ObjectContentExample : EditorWindow { [MenuItem("Examples/ObjectContent usage")] static void Init() { ObjectContentExample window = (ObjectContentExample)GetWindow(typeof(ObjectContentExample)); window.Show(); }

void OnGUI() { EditorGUILayout.PrefixLabel("Select a type:"); EditorGUILayout.BeginHorizontal(); if (GUILayout.Button(EditorGUIUtility.ObjectContent(null, typeof(Transform)).image)) DoSomething("Transform"); if (GUILayout.Button(EditorGUIUtility.ObjectContent(null, typeof(Rigidbody)).image)) DoSomething("RigidBody"); if (GUILayout.Button(EditorGUIUtility.ObjectContent(null, typeof(GameObject)).image)) DoSomething("GameObject"); EditorGUILayout.EndHorizontal();

if (GUILayout.Button("Close")) this.Close(); }

private void DoSomething(string obj) { Debug.Log("Hello there " + obj + "!"); } }