Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using UnityEngine;
- using System.Collections;
- public class Rotator : MonoBehaviour {
- void Update ()
- {
- transform.Rotate (new Vector3 (15, 30, 45) * Time.deltaTime);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement