前提・実現したいこと
unityにて、簡単なアクションゲームを制作しています。
playerのキャラクターが一定のX座標より後ろに下がったとき元の位置に戻ろうとする動きを作りたいです。
unity初心者で調べながらスクリプトを組み合わせているのですが、うまくできません。
よろしくお願いします。
該当のソースコード
C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class player : MonoBehaviour 6{ 7 // Start is called before the first frame update 8 void Start() 9 { 10 11 } 12 13 // Update is called once per frame 14 void Update() 15 { 16 Transform myTransform = this.transform; 17 18 Vector2 worldPos = myTransform.position; 19 20 if(worldPos.x >= 0.5) 21 { 22 worldPos.x = worldPos.x + 0.5f; 23 24 myTransform.position = worldPos; 25 } 26 } 27}
補足情報(FW/ツールのバージョンなど)
スクリプト以外でもやれる方法があればよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/26 14:54