16 lines
313 B
C#
Raw Normal View History

2023-01-24 21:51:46 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Lemon.GenericLib.VFX
{
public class FixedRotation : MonoBehaviour
{
// Update is called once per frame
void Update()
{
transform.rotation = Quaternion.identity;
}
}
}