Version: 2022.2
言語: 日本語
public Vector3 TransformPoint (Vector3 position);

説明

ローカル空間からワールド空間へ position を変換します。

返される位置情報はスケールに影響されていることに注意してください。方向に関する情報を扱う場合は Transform.TransformDirection を使用します。

Transform.InverseTransformPoint を使用してワールド空間からローカル空間へ変換します。

If you need to transform many points at once consider using Transform.TransformPoints instead as it is much faster than repeatedly calling this function.

See Also: Transform.TransformPoints, Transform.TransformDirection, Transform.TransformVector.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GameObject someObject; public Vector3 thePosition;

void Start() { // Instantiate an object to the right of the current object thePosition = transform.TransformPoint(Vector3.right * 2); Instantiate(someObject, thePosition, someObject.transform.rotation); } }

public Vector3 TransformPoint (float x, float y, float z);

説明

ローカル空間からワールド空間へ x、y、z を変換します。

返される位置情報はスケールに影響されていることに注意してください。方向に関する情報を扱う場合は Transform.TransformDirection を使用します。

Transform.InverseTransformPoint を使用してワールド空間からローカル空間へ変換します。

If you need to transform many points at once consider using Transform.TransformPoints instead as it is much faster than repeatedly calling this function.

See Also: Transform.TransformPoints, Transform.TransformDirection, Transform.TransformVector.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GameObject someObject;

void Start() { // Instantiate an object to the right of the current object Vector3 thePosition = transform.TransformPoint(2, 0, 0); Instantiate(someObject, thePosition, someObject.transform.rotation); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961