10 lines
152 B
C#
10 lines
152 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
public class FixedRotation : MonoBehaviour
|
|||
|
{
|
|||
|
private void LateUpdate()
|
|||
|
{
|
|||
|
base.transform.rotation = Quaternion.identity;
|
|||
|
}
|
|||
|
}
|