This commit is contained in:
LeeJaeHyun 2024-09-11 14:02:33 +09:00
parent f5dbd5c1c9
commit fdb057ad8e

View File

@ -12,7 +12,8 @@ public class PlayerController : MonoBehaviour
void Update()
{
// transform.position += new Vector3(0, 0, 1) * 0.01f;
transform.position += Vector3.forward * 0.01f;
// transform.position += Vector3.forward * 0.01f;
transform.Translate(Vector3.forward * 0.01f);
}
}