修复一堆bug 加入粒子系统代替原击打特效 焕新长音符逻辑 修复多重计分 更新判定管理和音符生成器 搞了一个免费包

This commit is contained in:
2025-12-18 03:26:52 +08:00
parent 1dd6c95ec9
commit a7d8d71d10
1572 changed files with 1658779 additions and 527 deletions
@@ -0,0 +1,20 @@
using UnityEngine;
using System.Collections;
// Cartoon FX - (c) 2015 Jean Moreno
// Indefinitely rotates an object at a constant speed
public class CFX_AutoRotate : MonoBehaviour
{
// Rotation speed & axis
public Vector3 rotation;
// Rotation space
public Space space = Space.Self;
void Update()
{
this.transform.Rotate(rotation * Time.deltaTime, space);
}
}