オブジェクトをZ軸のマイナス方向にだけ動かしたいです
しかし、Z軸マイナス方向に動くのですが、なぜか少しづつx軸も動いてしまっています
ごうすればなおるでしょうか?
C#
1コードusing System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class OBJ3 : MonoBehaviour 6{ 7 8 Vector3 direction = new Vector3(0f, 0f, -1f); 9 float speed = 1.0f; 10 11 // Use this for initialization 12 void Start () { 13 14 } 15 16 // Update is called once per frame 17 void Update () { 18 19 float step = speed * Time.deltaTime; 20 transform.position = Vector3.MoveTowards(transform.position, direction, step); 21 22 } 23 24}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/22 11:57