Epok Engine

EPOK RUNTIME

epok::effects::advance

Function · 1 overload

Function

Performs `advance` as part of runtime effects and their deterministic playback state.

Belongs to
epok::effects
Header
particle_effect_service.hpp
Overloads
1

Declaration

Declaration
inline void advance(Fixed dt)

Performs `advance` as part of runtime effects and their deterministic playback state.

ParameterTypeMeaning
dtFixedValue supplied for dt. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "particle_effect_service.hpp"

// Assume these named values have been initialized with valid data:
// Fixed dt

epok::effects::advance(dt);

Why use it

It provides direct, allocation-conscious access to runtime effects and their deterministic playback state. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/particle_effect_service.hpp:57

Related members