[Feedback] [feature suggestion] Meta-for-scenes

Would be useful if there was a way to include text notes / meta data on scenes. This way could include production notes like “No Vegetation on scene” or “make sure terraine uses this layer set” or various ToDos on a scene (I also keep that info in backlog, but would be good to also have some quick notes to indicate what scene it is).

AM working in 2019.2, so perhaps this is already included in one of the later releases.

This is not something we have but its very simple to do yourself.

using UnityEditor;

[CustomEditor(typeof(SceneAsset))]
public class SceneEditor : Editor
{
    public override void OnInspectorGUI()
    {
        // Add/remote notes. Save the notes to a text file etc
    }
}

Awesome.
Thanks for the suggestion.
Will see if I can get it work with Scriptable game object to store the scene specific data.

1 Like