This commit is contained in:
Scove
2026-03-26 20:27:19 +07:00
parent a94ab0e3f6
commit f42ef22a13
129 changed files with 5517 additions and 1134 deletions

View File

@@ -0,0 +1,8 @@
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
}