using UnityEngine;

public class Rotator : MonoBehaviour
{
    [SerializeField] float rotationFactor = 100f;

    void Update() {
        transform.Rotate(0f, rotationFactor * Time.deltaTime, rotationFactor * Time.deltaTime * 0.5f);
    }
}
