This commit is contained in:
김도환
2026-05-03 23:52:11 +09:00
parent de14bfc76a
commit b39116e734
12 changed files with 769 additions and 922 deletions

View File

@@ -0,0 +1,30 @@
using UnityEngine;
public class UnicornInput : MonoBehaviour
{
public static UnicornInputSystem Unicorn
{
get
{
_unicorn ??= new UnicornInputSystem();
return _unicorn;
}
}
private static UnicornInputSystem _unicorn;
private void Awake()
{
_unicorn ??= new UnicornInputSystem();
}
private void OnEnable()
{
Unicorn.Enable();
}
private void OnDisable()
{
Unicorn.Disable();
}
}