edx/assignment9final/Assets/Scripts/Pickup.cs
2022-11-10 21:56:29 -03:00

17 lines
281 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Pickup : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
transform.Rotate(0, 5f, 0, Space.World);
}
}