diff --git a/Assets/02_Scripts/PlayerController.cs b/Assets/02_Scripts/PlayerController.cs index 621f17d..ce79ef4 100644 --- a/Assets/02_Scripts/PlayerController.cs +++ b/Assets/02_Scripts/PlayerController.cs @@ -19,7 +19,8 @@ public class PlayerController : MonoBehaviour // Debug.Log("h=" + h + " v=" + v); Debug.Log($"h={h} / v={v}"); - transform.Translate(Vector3.forward * v * 0.01f); + transform.Translate(Vector3.forward * v * 0.05f); + transform.Translate(Vector3.right * h * 0.05f); } }