MayaFlux 0.4.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 97 of file Wiring.cpp.

98{
99 m_move_steps.push_back({ .position = pos, .delay_seconds = delay_seconds });
100 return *this;
101}
std::vector< MoveStep > m_move_steps
Definition Wiring.hpp:283

References m_move_steps.