Created
January 14, 2021 14:12
-
-
Save Adjuvant/a90e8de2195f7912954b0ff048783b88 to your computer and use it in GitHub Desktop.
Simple editor text note.
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 UnityEngine; | |
| namespace Utilities | |
| { | |
| public class Note : MonoBehaviour | |
| { | |
| [TextArea] | |
| [Tooltip("Doesn't do anything. Just comments shown in inspector")] | |
| public string Notes = "This component shouldn't be removed, it does important stuff."; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment