Organize custom scripts and Shared under Assets/Scripts, and delete assembly definition files

This commit is contained in:
2026-07-01 20:36:56 +07:00
parent befc19bf37
commit 01048074ee
183 changed files with 180 additions and 3456 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
}