Main Menu with loading screen
This commit is contained in:
15
Assets/Scripts/MultiTool.cs
Normal file
15
Assets/Scripts/MultiTool.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class MultiTool : MonoBehaviour
|
||||
{
|
||||
public Vector3 movingSpeed;
|
||||
public Vector3 rotation;
|
||||
|
||||
void FixedUpdate()
|
||||
{
|
||||
transform.Translate(movingSpeed);
|
||||
transform.Rotate(rotation);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user