修复一堆bug 加入粒子系统代替原击打特效 焕新长音符逻辑 修复多重计分 更新判定管理和音符生成器 搞了一个免费包
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user