Test files

This commit is contained in:
2026-01-18 16:47:11 +01:00
parent 305a0ec3a1
commit 9f86308d8a
5 changed files with 154 additions and 1 deletions

14
Assets/Scripts/Test.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace Marro.PacManUdon
{
using UdonSharp;
using UnityEngine;
public class Test : UdonSharpBehaviour
{
[SerializeField] Pellet pellet;
public void Start()
{
Debug.Log(pellet.enabled);
}
}
}