关卡1流程实现(测试版)

This commit is contained in:
xinkl
2025-11-09 18:00:06 +08:00
parent ac4d6536f2
commit b88b2ac834
405 changed files with 1442 additions and 523 deletions

View File

@@ -0,0 +1,19 @@
using UnityEngine;
public class PianoInteractable : MonoBehaviour, IInteractable
{
public void OnEnterInteractionRange()
{
Debug.Log("OnEnterInteractionRange");
}
public void OnExitInteractionRange()
{
Debug.Log("OnExitInteractionRange");
}
public void OnInteract()
{
MusicGame.instance.Play();
}
}