GetPrimCameraWithoutInterest

導入

v12.0 (2014)

説明

注視点のないカメラ プリミティブ オブジェクトを作成します。

スクリプト構文

oReturn = GetPrimCameraWithoutInterest( [PresetObj], [Name], [Parent], [Primitive], [3DObjCamera] );

戻り値

カメラ オブジェクト(X3DObject オブジェクト)を戻します。

パラメータ

パラメータ タイプ 説明
PresetObj String またはプリセット オブジェクト(「SIGetPreset」を参照) カメラ プリミティブの任意のプリセット

デフォルト値: "Camera"

Name 文字列 カメラの名前
Parent 文字列 カメラの親オブジェクト

デフォルト値: "Scene_Root"

Primitive Primitive カメラ プリミティブを戻します。
3DObjCamera Camera カメラ オブジェクトを戻します。

1. VBScript の例

Dim cam

Dim prim

GetPrimCameraWithoutInterest "Camera", "Bob",, prim, cam 

LogMessage "Camera object named " + cam.FullName + " created"

LogMessage "Camera primitive named " + prim.FullName + " created"

2. Python の例

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

関連項目

SIGetPrimCamera