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

◆ move_to()

Wiring & MayaFlux::Nexus::Wiring::move_to ( const glm::vec3 &  pos,
double  delay_seconds = 0.0 
)

Choreograph a position move as an EventChain step.

Parameters
posTarget position.
delay_secondsDelay after the previous step (0 = immediate on start).

Definition at line 104 of file Wiring.cpp.

105{
106 m_move_steps.push_back({ .position = pos, .delay_seconds = delay_seconds });
107 return *this;
108}
std::vector< MoveStep > m_move_steps
Definition Wiring.hpp:308

References m_move_steps.