using System.Collections; using System.Collections.Generic; using UnityEngine; public class FanRotate : MonoBehaviour { private float spinSpeed = 500.0f; void Start() { } // Update is called once per frame void Update() { transform.Rotate(0,0, spinSpeed * Time.deltaTime); } }