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

Description

Return a GUIContent object with the name and icon of an Object.

If the object is null, the icon will be picked according to type.


Object Content usage.

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