Eyeon:Script/Reference/Applications/Fusion/Classes/Input/GetConnectedOutput

From VFXPedia

< Eyeon:Script | Reference | Applications | Fusion | Classes | Input
Revision as of 14:01, 9 December 2006 by Peter (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Contents

Input : GetConnectedOutput()

Arguments

GetConnectedOutput()

Returns

Returns the output that is connected to a given input.

Remarks

This function is used to show an output that is connected to an input, such as a bezier spline to a merge's blend. If this function is run on an input that is not connected to an output, then eyeonScript will return nil.

Requirements

eyeonScript 5.0 Fusion 5.0

Examples

-- Creates two merges, animates the Blend property of the first,

-- and connects the blend value of the second to the same bezier

-- spline (an output) that the first is connected to.


Merge1=Merge({})

Merge2=Merge({})


Merge1.Blend = BezierSpline({})

Merge2.Blend=Merge1.Blend:GetConnectedOutput()


Tips for GetConnectedOutput (edit)

EyeonTips:Script/Reference/Applications/Fusion/Classes/Input/GetConnectedOutput