Why use it
The method is `const`, so it does not mutate the object through this API surface.
EPOK RUNTIME
Method · 1 overload
Performs `source tick` as part of fixed-step simulation time and frame timing.
int32_t source_tick(int32_t tick)constPerforms `source tick` as part of fixed-step simulation time and frame timing.
| Parameter | Type | Meaning |
|---|---|---|
tick | int32_t | Value supplied for tick. Keep referenced or pointed-to data valid for the complete call. |
Returns: int32_t. Check the value before continuing when it represents success, availability or a resource handle.
#include "timeline_runtime.hpp"
// Assume these named values have been initialized with valid data:
// int32_t tick
epok::timeline::Property& object = /* obtain a valid instance */;
auto result = object.source_tick(tick);The method is `const`, so it does not mutate the object through this API surface.
This is classified as **Engine internal**. Prefer a higher-level Epok service unless you need this exact control.
Declared in runtime/timeline_runtime.hpp:51