Files
BABA_YAGA/Assets/Scripts/Others/StickyNote.cs
2026-06-04 10:42:23 +07:00

8 lines
234 B
C#

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
}