2026-04-20 카트 잡기

This commit is contained in:
2026-04-20 18:06:26 +09:00
parent 43899e355f
commit 1feebc9a85
29 changed files with 699 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
using UnityEngine;
public class RideDetectionZone : MonoBehaviour
{
[SerializeField] private RideController _ride;
private void OnTriggerStay(Collider other)
{
if (_ride != null) _ride.OnDetectionStay(other);
}
private void OnTriggerExit(Collider other)
{
if (_ride != null) _ride.OnDetectionExit(other);
}
}