Sets or returns the y position of the FxOperator in the Softimage Illusion Fx Tree view as a Double.
// get accessor Double rtn = FxOperator.PositionY; // set accessor FxOperator.PositionY = Double; |
set oRoot = ActiveProject.ActiveScene.Root set oTree = oRoot.AddFxTree set oFxOp = oTree.AddImageOperator("File Output") LogMessage "Position Y : " & oFxOp.PositionY |