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

◆ get_modulators()

std::vector< std::pair< ModulatorRole, std::shared_ptr< Node > > > MayaFlux::Nodes::Generator::Impulse::get_modulators ( ) const
overridevirtual

Retrieves the current modulators connected to this node.

Returns
Vector of pairs containing the modulator role and the corresponding node

Reimplemented from MayaFlux::Nodes::Node.

Definition at line 232 of file Impulse.cpp.

233{
234 std::vector<std::pair<ModulatorRole, std::shared_ptr<Node>>> result;
239 return result;
240}
std::shared_ptr< Node > m_amplitude_modulator
Node that modulates the amplitude.
Definition Impulse.hpp:252
std::shared_ptr< Node > m_frequency_modulator
Node that modulates the frequency.
Definition Impulse.hpp:247

References MayaFlux::Nodes::AmplitudeMod, MayaFlux::Nodes::FrequencyMod, m_amplitude_modulator, and m_frequency_modulator.