using System.Collections; using System.Collections.Generic; using UnityEngine; public class Rotate : MonoBehaviour { public Vector3 rotationSpeed; public Space rotationSpace; void FixedUpdate() { print(rotationSpeed); transform.Rotate(rotationSpeed, rotationSpace); } }