A small Unity package for attaching simple notes to GameObjects.
Requires Unity 2021.3 or newer.
The easiest way to pull this package into another Unity project is through Unity Package Manager using the Git URL.
- Open the Unity project that should use the package.
- Go to
Window > Package Manager. - Click the
+button. - Choose
Add package from git URL.... - Enter:
https://github.com/Breakstep-Studios/unity-inspector-notes.git
You can also add it directly to the project's Packages/manifest.json file:
{
"dependencies": {
"com.breakstepstudios.unity-inspector-notes": "https://github.com/Breakstep-Studios/unity-inspector-notes.git"
}
}For active development, using the Git URL directly is convenient because Unity pulls from the repository's default branch.
For production projects, prefer pinning to a release tag once one exists:
https://github.com/Breakstep-Studios/unity-inspector-notes.git#v1.0.0
Add the Inspector Note component to any GameObject, then write the note in the component's inspector.
- Set a max size so the note window scrolls.
- Make notes readonly by default, forcing an edit mode switch to edit the note.
- Add an editor window that aggregates all notes.
- Style notes differently to make them pop as notes.
