Files
beyond/Assets/Scripts/Utils/ResetRotation.cs
2024-11-20 15:21:28 +01:00

16 lines
299 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Beyond
{
public class ResetRotation : MonoBehaviour
{
// Update is called once per frame
void Update()
{
transform.rotation = Quaternion.identity;
}
}
}