TheKingsRace/Assets/Scripts/Spin.cs
Evan Nydahl c017a00ddb Edited rough graybox plains
-finished top path
-finished middle path
-nearly finsihed bottom
2021-11-02 14:44:30 -05:00

20 lines
385 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Spin : MonoBehaviour
{
Vector3 rotation = new Vector3(0.0f, .75f, 0.0f);
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
this.gameObject.transform.Rotate(rotation);
}
}