1
Fork 0
mirror of https://github.com/Steffo99/keep-everything-alive.git synced 2024-11-22 17:34:18 +00:00
keep-everything-alive/Assets/Scripts/Microgame_Nation/MoveInDirection.cs

14 lines
286 B
C#
Raw Normal View History

2020-04-20 01:03:33 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MoveInDirection : MonoBehaviour
{
public Vector3 direction;
public float speed;
private void Update() {
transform.Translate(direction * speed * Time.deltaTime);
}
}