Skip to content

Instantly share code, notes, and snippets.

@Adjuvant
Created January 14, 2021 14:12
Show Gist options
  • Select an option

  • Save Adjuvant/a90e8de2195f7912954b0ff048783b88 to your computer and use it in GitHub Desktop.

Select an option

Save Adjuvant/a90e8de2195f7912954b0ff048783b88 to your computer and use it in GitHub Desktop.
Simple editor text note.
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