다이얼로그 일단 다 넣고 다 넣긴함 오류 수정 해아함

This commit is contained in:
dldydtn9755-crypto
2026-07-22 21:19:13 +09:00
parent 0f0e6c6f63
commit 96dcd6e361
67 changed files with 7974 additions and 396 deletions

View File

@@ -0,0 +1,23 @@
using UnityEngine;
using UnityEngine.Events;
public class KimchiHitZone : MonoBehaviour
{
[SerializeField] private UnityEvent onKimchiHit;
private bool hasBeenHit;
private void OnTriggerEnter(Collider other)
{
if (hasBeenHit)
return;
if (!other.CompareTag("Kimchi"))
return;
hasBeenHit = true;
onKimchiHit?.Invoke();
Debug.Log("김치싸대기 성공!");
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: f38e3e49c2637c84f9681eddb0eb1a47