FxOperator をレンダリングします。
FxOperator.Render( [Interactive] ); |
| パラメータ | タイプ | 詳細 |
|---|---|---|
| Interactive | Boolean | True に設定されている場合は、レンダリングの開始を確認するダイアログボックスが表示されます。
デフォルト値: False |
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
|