Tag Archives: unity editor extensions
Unity Editor Extensions – Extending Unity’s Default Inspectors
Unity allows creating custom inspectors for your own custom types, as well as its built-in types easily. But if you’re after extending unity’s built-in inspectors you’re mostly out of luck – there’s no simple API for that (Unity’s inspectors are not publicly exposed). … Continue reading
Posted in Unity
Tagged Editor Extensions, inspector, unity, Unity Editor, unity editor extensions, unity-editor-extensions
2 Comments
Finding Missing References in Unity
This post shows a short and simple solution for finding missing references in Unity. You can get the code from GitHub. Missing References A missing reference is different from having no reference at all (in which case the inspector shows “None”). These can occur … Continue reading