関節の動きを制限させるアンカーのローカル座標
位置はローカル座標で定義されています。
hingeJoint.anchor = Vector3 (2, 0, 0);
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { hingeJoint.anchor = new Vector3(2, 0, 0); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: hingeJoint.anchor = Vector3(2, 0, 0)