Trade WIP

This commit is contained in:
2022-05-25 20:56:27 +05:30
parent 6018f9490c
commit 1c1fa09a48
4 changed files with 322 additions and 208 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Rotator : MonoBehaviour
{
public Vector3 rotationVector;
void Update()
{
transform.Rotate(rotationVector);
}
}