Initial commit
This commit is contained in:
15
Assets/Scripts/Maze.cs
Normal file
15
Assets/Scripts/Maze.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Marro.PacManUdon
|
||||
{
|
||||
using UdonSharp;
|
||||
using UnityEngine;
|
||||
using VRC.SDKBase;
|
||||
using VRC.Udon;
|
||||
|
||||
public class Maze : UdonSharpBehaviour
|
||||
{
|
||||
[SerializeField] public Vector2 mazeBoundaries;
|
||||
[SerializeField] public GameObject[] ghostTargets;
|
||||
[SerializeField] public GameObject pelletContainer;
|
||||
[SerializeField] public GameObject mazeSprite;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user