Add font,setup 2 scene

This commit is contained in:
manhduyhoang90
2026-04-14 09:49:11 +07:00
parent 77eb16bb37
commit 89f8b35ee6
11 changed files with 14585 additions and 307 deletions

View File

@@ -14,7 +14,7 @@ public class _BasicSpawner : MonoBehaviour, INetworkRunnerCallbacks
{
private NetworkRunner _runner { get; set; }
public LobbyManager LobbyManager;
public _LobbyManager LobbyManager;

View File

@@ -25,7 +25,7 @@ public class Maze : MonoBehaviour
public int depth = 30; //z length
public byte[,] map;
public int scale = 6;
public Transform _mapParentObjet;
// Start is called before the first frame update
void Start()
@@ -66,6 +66,7 @@ public class Maze : MonoBehaviour
GameObject wall = GameObject.CreatePrimitive(PrimitiveType.Cube);
wall.transform.localScale = new Vector3(scale, scale, scale);
wall.transform.position = pos;
wall.transform.SetParent(_mapParentObjet.transform);
}
}
}