Unity code that gets you that sweet editor scripting fix. Unity did a pretty good job building out a massive editor... but there are a few holes. Lets fill them one by one.
Use the SearchableEnumAttribute on an enum to get an improved enum selector popup. This has a text search box to filter the list, scrolls like a real scroll list, works with keyboard navigation, and focuses on the current selection when opening.
Use it on something like Unity's KeyCode to be less likley to want to kill yourself when trying to pick something at the bottom of the list.
public class SearchableEnumDemo : ScriptableObject
{
[SearchableEnum]
public KeyCode AwesomeKeyCode;
}
Loading a scene in Unity normally requires a string name or index which can easily break. By using a SceneReference on your MonoBehaviour, you can hard reference a scene and get validation features.
Draw buttons in the inspector without writing any editor code.
public class QuickButtonsDemo : MonoBehaviour
{
/// <summary>
/// This draws a button in the inpsector that calls
/// OnDebugButtonClicked on click.
/// </summary>
public QuickButton NameButton = new QuickButton("OnDebugButtonClicked");
/// <summary>
/// This draws a button in the inpsector that invokes a
/// delegate on click.
/// </summary>
public QuickButton DelegateButton = new QuickButton(input =>
{
QuickButtonsDemo demo = input as QuickButtonsDemo;
Debug.Log("Delegate Button Clicked on " + demo.gameObject.name);
});
private void OnDebugButtonClicked()
{
Debug.Log("Debug Button Clicked");
}
}