FxOperator.Render

説明

FxOperator をレンダリングします。

スクリプト 構文

FxOperator.Render( [Interactive] );

パラメータ

パラメータ タイプ 詳細
Interactive Boolean True に設定されている場合は、レンダリングの開始を確認するダイアログボックスが表示されます。

デフォルト値: False

VBScript の例

set oTree = ActiveSceneRoot.AddFxTree
set oFxOp1 = oTree.AddImageOperator("File Input")
oFXOp1.FileName = Application.InstallationPath(siFactoryPath) & "Data/XSI_SAMPLES/Pictures/cloud02.pic"
set oFxOp2 = oTree.AddImageOperator("File Output")
oFXOp2.EndFrame = 1
oFxOp1.Connect oFxOp2, 0
oFxOp2.Render

関連項目

FxTree