Build simple script that rotates game object

This commit is contained in:
Sweet Tini
2020-01-29 00:29:54 -05:00
parent 7b2c644597
commit f5e78fc15d
14 changed files with 237 additions and 97 deletions

View File

@@ -0,0 +1,11 @@
using UnityEngine;
public class RotatingLogo : MonoBehaviour
{
public Vector3 speed;
void Update()
{
transform.Rotate(speed);
}
}