using UnityEngine; public class StickyNote : MonoBehaviour { [TextArea] public string noteText = "Enter note here..."; public Color noteColor = Color.yellow; public bool showAlways = true; // Show even when not selected }