位置・サイズ・角度を取得・設定する

unity

ゲームオブジェクトには、世界全体に対する自分の位置と、自分と親子関係にあるオブジェクトとの位置があります
これらは、現在の値を取得することも,値を変更することも可能です

・ワールド位置

this.transform.position.x
this.transform.position.y
this.transform.position.z

・ワールド角度

this.transform.eulerAngles.x
this.transform.eulerAngles.y
this.transform.eulerAngles.z

・ワールドサイズ

this.transform.lossyScale.x
this.transform.lossyScale.y
this.transform.lossyScale.z

・ローカル位置

this.transform.localPosition.x
this.transform.localPosition.y
this.transform.localPosition.z

・ローカル角度

this.transform.localEulerAngles.x
this.transform.localEulerAngles.y
this.transform.localEulerAngles.z

・ローカルサイズ

this.transform.localScale.x
this.transform.localScale.y
this.transform.localScale.z

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です