This file contains hidden or 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; | |
using UnityEditor; | |
using UnityEngine; | |
using UnityEditor.IMGUI.Controls; | |
[CustomPropertyDrawer(typeof(Enum), true)] | |
public class EnumPropertyDrawer : PropertyDrawer | |
{ | |
private AdvancedStringOptionsDropdown _dropdown; | |
private SerializedProperty _property; |
This file contains hidden or 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 System.Linq; | |
using UnityEditor; | |
using UnityEngine; | |
using Object = UnityEngine.Object; | |
public class QuickAccessWindow : EditorWindow | |
{ | |
[System.Serializable] | |
public class Category |