v12.0 (2014)
注視点のないカメラ プリミティブ オブジェクトを作成します。
oReturn = GetPrimCameraWithoutInterest( [PresetObj], [Name], [Parent], [Primitive], [3DObjCamera] ); |
カメラ オブジェクト(X3DObject オブジェクト)を戻します。
パラメータ | タイプ | 説明 |
---|---|---|
PresetObj | String またはプリセット オブジェクト(「SIGetPreset」を参照) |
カメラ プリミティブの任意のプリセット デフォルト値: "Camera" |
Name | 文字列 | カメラの名前 |
Parent | 文字列 |
カメラの親オブジェクト。 デフォルト値: "Scene_Root" |
Primitive | Primitive | カメラ プリミティブを戻します。 |
3DObjCamera | Camera | カメラ オブジェクトを戻します。 |
Dim cam Dim prim GetPrimCameraWithoutInterest "Camera", "Bob",, prim, cam LogMessage "Camera object named " + cam.FullName + " created" LogMessage "Camera primitive named " + prim.FullName + " created" |
RetVal = Application.GetPrimCameraWithoutInterest("","","") # Extract the objective from the ISIVTCollection CamPrim = RetVal( "Primitive" ) CamObj = RetVal( "3DObjCamera" ) Application.LogMessage( CamPrim.FullName ) Application.LogMessage( CamObj.FullName ) # INFO : Camera1.camera # INFO : Camera1 |