using UnityEngine;
public class Rotator : MonoBehaviour
{
public Vector3 axis = Vector3.up;
public float rotationSpeed = 30f;
private void Update()
{
transform.Rotate(axis, rotationSpeed * Time.deltaTime);
}
}

Analyst studies emerging trends in the information technology.