constraint
一時プリミティブに対する位置コンストレイントを設定し、オブジェクトを現在の場所に固定します。 オブジェクトがすでに固定されている場合は、コンストレイントおよび一時プリミティブが削除されます。
TogglePinObjectInPosition( [ConstrainedObj] ); |
CreatePrim "Cube", "MeshSurface" SetValue "cube.cube.length", 3.5 Translate , 2, 3, 0, siRelative, siView, siObj, siXYZ ' toggle pin on TogglePinObjectInPosition "cube" Refresh ' object will not move Translate , -5, 1, 0, siRelative, siView, siObj, siXYZ Refresh ' toggle pin off TogglePinObjectInPosition "cube" ' object will now move Translate , -5, 1, 0, siRelative, siView, siObj, siXYZ |