2026-06-13 리듬게임 판정

This commit is contained in:
skrwns304@gmail.com
2026-06-13 00:16:11 +09:00
parent b0aede20f2
commit e8086180a0
4 changed files with 39 additions and 39 deletions

View File

@@ -2,14 +2,14 @@
public class RoomMoveButton : MonoBehaviour
{
[Header("이 버튼을 눌렀을 때 이동할 방 번호 입력")]
[Header("이 버튼을 눌렀을 때 이동할 방 번호 입력")]
[SerializeField] private int targetRoomNumber;
public void OnClickMoveRoom()
{
if (RoomRouteManager.Instance == null)
{
Debug.LogError("RoomRouteManager가 없습니다.");
Debug.LogError("RoomRouteManager가 없습니다.");
return;
}