mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
9 lines
No EOL
151 B
C#
9 lines
No EOL
151 B
C#
using UnityEngine;
|
|
|
|
public class ForceRotationIdentity : MonoBehaviour
|
|
{
|
|
private void Update ()
|
|
{
|
|
transform.rotation = Quaternion.identity;
|
|
}
|
|
} |