スクリプトを入れたオブジェクト以外の座標を取得するにはどうすれば良いですか?
c#
1using System.Collections; 2using System.Collections.Generic; 3using UnityEngine; 4 5public class test : 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 a = this.transform;//ここのthis.を変える? 17 18 Vector3 mypos = a.position; 19 var y = mypos.y; 20 Debug.Log(y); 21 } 22} 23
今のコードは自分の座標を取得するようになってるので
Transform a = this.transform;のthis.を取得したいオブジェクト名を入れるとよいと思うのですが、
その取得したいオブジェクトはこのスクリプト内では宣言されてないのでどうしたらよいかよくわかりません。
分かる方回答お願いします!
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/23 01:19