Files
Cielonos/Assets/OtherPlugins/AutoLOD/Demo/Scripts/GlobalSmoothRotation.cs
SoulliesOfficial f7af60351b 阶段性完成
2025-12-08 05:27:53 -05:00

17 lines
354 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AutoLOD.MeshDecimator
{
public class GlobalSmoothRotation : MonoBehaviour
{
// Update is called once per frame
void Update()
{
transform.Rotate(new Vector3(0f, 10f * Time.deltaTime, 0f), Space.World);
}
}
}