비트 찍기 완료 및 클로드를 통한 api작업

This commit is contained in:
jongjae0305
2026-05-20 16:44:28 +09:00
commit 2cd1be88d4
1596 changed files with 444234 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
using UnityEngine;
public class Cube : MonoBehaviour
{
void Update()
{
// Spawner.cs의 noteSpeed(2.0)와 이 숫자가 반드시 같아야 타이밍이 맞습니다.
transform.position += Time.deltaTime * transform.forward * 2;
// 화면 밖으로 나간 노트 자동 삭제 (최적화)
if (transform.position.z < -5f)
{
Destroy(gameObject);
}
}
}