Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

EditorGUIUtility.ObjectContent

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

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

Parameters

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, GameObject
	// and MonoBehaviour in 4 buttons.
	
	class EditorGUIUtilityObjectContent extends EditorWindow {
	
		@MenuItem("Examples/ObjectContent Usage")
		static function Init() {
			var window = GetWindow(EditorGUIUtilityObjectContent);
			window.Show();	
		}
		
		function OnGUI() {
			EditorGUILayout.PrefixLabel("Select a type:");
			EditorGUILayout.BeginHorizontal();
				if(GUILayout.Button(EditorGUIUtility.ObjectContent(null,Transform).image))
					DoSomething();
				if(GUILayout.Button(EditorGUIUtility.ObjectContent(null,Rigidbody).image))
					DoSomething();
				if(GUILayout.Button(EditorGUIUtility.ObjectContent(null,GameObject).image))
					DoSomething();
				if(GUILayout.Button(EditorGUIUtility.ObjectContent(null,MonoBehaviour).image))
					DoSomething();
			EditorGUILayout.EndHorizontal();
			
			if(GUILayout.Button("Close"))
				this.Close();
			
		}
		
		function DoSomething() {
			Debug.Log("Hello there!");
		}
	}