Murl Engine Lua Addon API  Version 1.0 beta
Murl.Graph.IGenericParameters

The IGenericParameters graph node interface.

A generic parameters node represent a specialized constant buffer parameters node, and can be used to manually define a set of individual parameter groups without any connection to a specific shader.

See the Graph::IConstantBufferParameters base interface for additional information.


Table members

Methods


GetNodeInterface()

Get the constant Graph::INode interface. This method returns a constant pointer to the node's Graph::INode interface, to be able to query common node properties such as active state, visibility or ID.

Murl.Graph.INode GetNodeInterface()

Returns
Murl.Graph.INode The constant Graph::INode interface, or null if not available

GetParametersInterface()

Get the constant Graph::IParameters interface. This method returns a constant pointer to the node's Graph::IParameters interface, to be able to query common parameter properties.

Murl.Graph.IParameters GetParametersInterface()

Returns
Murl.Graph.IParameters The constant Graph::IParameters interface, or null if not available

GetConstantBufferParametersInterface()

Get the constant Graph::IConstantBufferParameters interface. This method returns a constant pointer to the node's Graph::IConstantBufferParameters interface.

Murl.Graph.IConstantBufferParameters GetConstantBufferParametersInterface()

Returns
Murl.Graph.IConstantBufferParameters The constant Graph::IConstantBufferParameters interface, or null if not available

GetConstantBufferParameterGroupNodeTarget()

Get the constant Graph::IConstantBufferParameterGroup container storing the individual parameter groups. This method returns a constant pointer to the node's Graph::IConstantBufferParameterGroup container that can be used to query the individual generic parameter group nodes.

Murl.Graph.IGenericNodeTarget.GraphIConstantBufferParameterGroup GetConstantBufferParameterGroupNodeTarget()

Returns
Murl.Graph.IGenericNodeTarget.GraphIConstantBufferParameterGroup The constant Graph::IConstantBufferParameterGroup container, or null if not available.