Connect (FxOperator)
Description
Connects the output of the FxOperator to the specified input of a destination FxOperator.
Scripting Syntax
FxOperator.Connect( Destination, Index )
C# Syntax
FxOperator.Connect( FxOperator in_FxOpDest, Int32 in_nIndex );Parameters
|
Parameter |
Type |
Description |
|
Destination |
FxOperator to connect to |
|
|
Index |
Index of the input to be connect to |
Examples
VBScript Example
set oRoot = ActiveProject.ActiveScene.Root
set oTree = oRoot.AddFxTree
set oSrc = oTree.AddImageOperator("File Input")
set oDest = oTree.AddImageOperator("BoxBlur")
oSrc.Connect oDest, 0See Also
Autodesk Softimage v7.5