最終更新:2019-09-06 (金) 12:58:18 (1686d)  

Unity/座標
Top / Unity / 座標

メモ

  • ChildのTransform情報はParentからの相対値

関連

// ワールド空間位置情報
transform.position
// ワールド空間角度情報
transform.rotation
// ワールド空間サイズ情報
transform.lossyScale
// ローカル空間位置情報
transform.localPosition
// ローカル空間角度情報
transform.localRotation
// ローカル空間サイズ情報
transform.localScale

参考