Render (FxOperator)
Description
Renders an FxOperator.
Scripting Syntax
FxOperator.Render( [Interactive] )
C# Syntax
FxOperator.Render( Boolean in_bInteractive );
Parameters
|
Parameter |
Type |
Description |
|
Interactive |
If set the true the user will be prompted to start the rendering. Default Value: False |
Examples
VBScript Example
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
See Also
SOFTIMAGE|XSI v6.01