ramyaa1113's picture
synth app updated
94c52e3
Raw
History Blame Contribute Delete
173 Bytes
using UnityEngine;
public class Rotator : MonoBehaviour {
public float speed = 90f;
void Update() {
transform.Rotate(0, speed * Time.deltaTime, 0);
}
}