下のスクリプトをオブジェクトにアタッチしVector2.Lerpを使ってオブジェクトを移動させようとしていますが作動しません。
x=-1.69103 y=3.623628位の間を微動しています。
ご教授のほどお願いいたします。
C#
1public class Test : MonoBehaviour 2{ 3 Vector2 firstPos = new Vector2(0f,0f); 4 Vector2 nextPos = new Vector2(0f, 0f); 5 void Update() 6 { 7 firstPos.x = -1.75f; 8 firstPos.y = 3.75f; 9 nextPos.x = 0f; 10 nextPos.y = 0f; 11 transform.position = Vector2.Lerp(firstPos, nextPos, Time.deltaTime * 2f); 12 } 13}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/04/08 10:38