This commit is contained in:
xinkl
2025-11-09 13:26:17 +08:00
parent 15515d7393
commit befd15e1a3
25 changed files with 1213 additions and 42 deletions

View File

@@ -0,0 +1,21 @@
using UnityEngine;
public class InteractableObject : MonoBehaviour, IInteractable
{
public GameObject tipUI;
public void OnEnterInteractionRange()
{
Debug.Log("Enter");
}
public void OnExitInteractionRange()
{
Debug.Log("Exit");
}
public void OnInteract()
{
GameFlowMgr.instance?.StartGame();
Debug.Log("Interact");
}
}