this might be the smartest thing i've ever done
using System.Collections;using System.Collections.Generic;
using UnityEngine;
public class Note : MonoBehaviour
{
[TextArea]
[Tooltip("Notes for this object.")]
public string note;
}
This is an incredibly useful tool, and I've written almost the exact same one before. (Although TextArea is almost certainly a better way to do it and I will steal it.)