MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ get_last_context()

NodeContext & MayaFlux::Nodes::Node::get_last_context ( )
inline

Retrieves the last created context object.

Returns
Reference to the last NodeContext object

This method provides access to the most recent NodeContext object created by the node. This context contains information about the node's state at the time of the last output generation.

Definition at line 306 of file Node.hpp.

306{ return *m_last_context; }
std::unique_ptr< NodeContext > m_last_context
The last context object created for callbacks.
Definition Node.hpp:396