48 template<
class... args_t>
54 void clear() noexcept;
59 void start() noexcept;
64 void pause() noexcept;
79 void reset() noexcept;
85 void update(T fDeltaTime) noexcept;
103 T
get()
const noexcept;
163 void update_total_time() noexcept;
166 std::vector<easing_element_type> m_ElementsSequence;
167 size_t m_nCurrentElement = 0;
168 T m_fTotalTime = T(0.f);
169 T m_fCurrentTime = T(0.f);
171 bool m_bLoop =
false;
An updatable element representing the value of the easing function at a given time.
qx::base_easing_element queue
bool is_started() const noexcept
Is sequence started.
T get_speed() const noexcept
Get updating speed value.
void update(T fDeltaTime) noexcept
Update easing element sequence.
void start() noexcept
Start easing element sequence playing.
void clear() noexcept
Clear elements queue.
void pause() noexcept
Pause easing element sequence playing.
void skip() noexcept
Skip current element.
bool is_paused() const noexcept
Is sequence paused.
bool is_finished() const noexcept
Is sequence finished.
T get_fraction() const noexcept
Get a fraction indicating how much of the sequence has played.
void resume() noexcept
Resume easing element sequence playing.
void emplace_back(args_t &&... args) noexcept
Add easing element to queue by constructing in-place.
T get() const noexcept
Get value of current sequence element.
void set_looped(bool bLooped) noexcept
Set loop state.
void reset() noexcept
Reset sequence.
bool is_not_started() const noexcept
Is sequence not started.
void set_speed(T fSpeed) noexcept
Set updating speed value.
bool is_looped() const noexcept
Is sequence looped.
void push_back(easing_element_type element) noexcept
Add easing element to queue.