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; } } }