This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEditor; | |
using UnityEngine; | |
[InitializeOnLoad] | |
public class Question9_practical : MonoBehaviour | |
{ | |
const int iconSize = 16; | |
static Question9_practical() | |
{ | |
EditorApplication.hierarchyWindowItemOnGUI += DrawComponentIcons; | |
} | |
static void DrawComponentIcons(int instanceID, Rect rect) | |
{ | |
rect.x += rect.width; | |
rect.width = iconSize; | |
Component[] components = GetComponents(instanceID); | |
HashSet<Texture> textures = new HashSet<Texture>(); | |
foreach (Component component in components) | |
{ | |
textures.Add(AssetPreview.GetMiniThumbnail(component)); | |
} | |
foreach (var texture in textures) | |
{ | |
rect.x -= iconSize; | |
GUI.DrawTexture(rect, texture); | |
} | |
} | |
static Component[] GetComponents(int instanceID) | |
{ | |
GameObject sceneGameObject = EditorUtility.InstanceIDToObject(instanceID) as GameObject; | |
return sceneGameObject.GetComponents<Component>(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment