using System.Collections; using System.Collections.Generic; using UnityEngine; public class IdleRotation : MonoBehaviour { [SerializeField] private float speed; // Update is called once per frame void Update() { transform.Rotate(Vector3.up, Time.deltaTime * speed); } }