16 lines
313 B
C#
16 lines
313 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Lemon.GenericLib.VFX
|
||
|
{
|
||
|
public class FixedRotation : MonoBehaviour
|
||
|
{
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
transform.rotation = Quaternion.identity;
|
||
|
}
|
||
|
}
|
||
|
}
|