Renders an FxOperator.
FxOperator.Render( [Interactive] ); |
Parameter | Type | Description |
---|---|---|
Interactive | Boolean | If set the true the user will be prompted to start the
rendering.
Default Value: 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 |