/* Script Provided by Will Goldstone as part of Unity Game Development Essentials book assets */ /* Please Do Not Remove this comment - this script is for reference only */ var rotationAmount : float = 5.0; function Update () { transform.Rotate(Vector3(0,rotationAmount,0)); }