Files
BABA_YAGA/Assets/Scripts/Others/StickyNote.cs

8 lines
234 B
C#
Raw Normal View History

2026-03-26 20:27:19 +07:00
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
}