mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
13 lines
207 B
C#
13 lines
207 B
C#
using UnityEngine;
|
|
|
|
namespace Fie.Utility
|
|
{
|
|
[ExecuteInEditMode]
|
|
public class FieUtilRotationLocker : MonoBehaviour
|
|
{
|
|
private void Update()
|
|
{
|
|
base.transform.rotation = Quaternion.identity;
|
|
}
|
|
}
|
|
}
|