ui environment changes, fix multiple inits

This commit is contained in:
2024-05-23 20:18:26 +03:00
parent 303b809dea
commit 569bf2a38d
31 changed files with 6521 additions and 16414 deletions
+10
View File
@@ -0,0 +1,10 @@
using UnityEngine;
public class StartUp : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
GameManager.Instance.Scene.Change("City",string.Empty);
}
}