Files
Cielonos/Assets/External VFXs/MasterStylizedFX/Scripts/AutoRotate.cs
SoulliesOfficial d15957c719 更新
2025-12-17 04:19:38 -05:00

16 lines
333 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MasterStylizedExplosions
{
public class AutoRotate : MonoBehaviour
{
public Vector3 RotateAngle;
private void Update()
{
transform.Rotate(RotateAngle * Time.deltaTime, Space.Self);
}
}
}