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