Bases: object
Proxy of C++ PCore::LWNodeOutputFuncs class
Get an output by it's index
number. If the output doesn't belong to this node, returns 0. The index number of the first output is 1.
Create a new output for the node.
Creates a custom connection type. Input parameters are the same as LWNodeOutputFuncs::create()
, but with the addition of vendor and type IDs. The IDs should be generated using the lwsdk.LWID_()
function.
Destroy an output from the node.
Get the first output from a node.
Get the index
number of the output. If the output doesn't belong to this node, returns 0. The index number of the first output is 1.
Get the type of the connection that is the source the value.
!! NOT IMPLEMENTED !!
Returns the name of the output.
Get the next output that follows outputID
.
Returns the node to which this output belongs.
Get the number of outputs for this node
Get the output that precedes outputID
.
Set the value for the output being evaluated. Call from the node evaluation function when in rendering mode. The value in data
should match the corresponding output type for the node. For example, if the output type is lwsdk.NOT_COLOR
, the value should be a format that can be converted into a sequence of 3 doubles.