Eyeon:Script/Reference/Applications/Fusion/Classes/Operator/GetInput
From VFXPedia
< Eyeon:Script | Reference | Applications | Fusion | Classes | Operator
Contents |
Tool : GetInput
Summary
Gets the value of an Input at a given time, as a number, string or Parameter object.
The time argument may be omitted, if the input is not animated.
A similar result may be obtained by simply indexing the input with the desired time.
Arguments
value = GetInput(string inputID [, number time]]))
- inputID
- the ID of the input to be queried
- time
- the keyframe time to be queried (optional)
Returns
A number, string or other Parameter object, depending on the DataType of the queried Input.
Example
-- these lines do the same thing var = tool.GetInput("Blend", 30.0) var = tool.Blend[30.0]
Requirements
- eyeonScript 5.0
- Fusion 5.0
See Also
Tips for GetInput (edit)
EyeonTips:Script/Reference/Applications/Fusion/Classes/Operator/GetInput