下記のスクリプトでキーを押したときにある位置からある位置に移動をさせたいのですが、その時の移動スピードを調整したいです。
下記だとキーを押すだけで瞬間的に移動してしまいます。
よろしくお願いいたします。
コード using System.Collections; using System.Collections.Generic; using UnityEngine; public class lefthand : MonoBehaviour { // Start is called before the first frame update void Start() { this.transform.position = new Vector3(-6, -5, -20); } // Update is called once per frame void Update() { if (Input.GetKey(KeyCode.C)) { this.transform.position = new Vector3(-3.0f, -16.5f, -0.7f); } } }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/07 08:09
2021/10/07 08:37
2021/10/07 09:35