This commit is contained in:
spencer-lustila0
2025-01-13 19:09:57 -05:00
parent 44ccb6ea81
commit 592a2480df
7 changed files with 359 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
public class myscript : MonoBehaviour
{
[SerializeField] private float speed;
void Start()
{
}
void Update()
{
transform.position += new Vector3(speed * Time.deltaTime, 0f, 0f);
}
}