Fork Lifter Spaghetti Code

This commit is contained in:
Starpelly
2021-12-18 23:10:43 -05:00
parent e20cf19e11
commit 33bd99bbc1
502 changed files with 66320 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using UnityEngine;
public class Rotate : MonoBehaviour
{
[SerializeField] private float rotateSpeed;
void Update()
{
transform.Rotate(Vector3.forward * rotateSpeed * Time.deltaTime);
}
}