remify minigame CatsRhythmGame
This commit is contained in:
12
Assets/02_Scripts/Rhythm/RhythmNoteInstance.cs
Normal file
12
Assets/02_Scripts/Rhythm/RhythmNoteInstance.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class RhythmNoteInstance : MonoBehaviour
|
||||
{
|
||||
public float HitTime; // 이 노트의 도달 시각
|
||||
|
||||
private void Update()
|
||||
{
|
||||
// 판정선 향해 이동
|
||||
// 너무 지나가면 Miss 처리 후 자기 파괴
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user