Eyeon:Script/Reference/Applications/Fuse/Tool/Events/Process
From VFXPedia
Fuse Reference Manual > Process
Event Function
Contents |
Summary
The Process function is called whenever the Script Plugin tool needs to do some work by processing the image. This can occur during the final render, or during an interactive render. The Request object passed to the Process function as its only argument contains information about the current render settings, including current time, proxy and motion blur settings.
The process function does not return a value.
All Fuse tools require a Process event function.
Usage
Process(object Request)
Arguments
Request (object, required) The request object is automatically passed to the Process function when Fusion invokes the Process event. This object contains all the relevant information about the current render request, including proxy and motion blur settings, and the current state of all tools.
In Fuse tools released by eyeon, the Request object is usually assigned to the variable 'req'.
Examples
See Fuse Examples for examples.
See Also
- ProcessPixels function.
- GetValue function.
- Set function.
- Request class.