C#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class Position : MonoBehaviour 6{ 7 public float position; 8 9 void Start() 10 { 11 Transform tf = this.transform; 12 tf.transform.position.x = new Vector3(position, 0, 0); 13 14 } 15}
これでスクリプトを貼り付けたオブジェクトの初期位置をいじろうと思ったのですが、
tf.transform.position の部分に変数ではないため戻り値を変更できないとエラーが出ます。
何が間違っているのかわかる方、ぜひ教えて下さい。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。