Epok Engine

EPOK RUNTIME

epok::timeline::Property::source_tick

Method · 1 overload

Method

Performs `source tick` as part of fixed-step simulation time and frame timing.

Belongs to
epok::timeline::Property
Header
timeline_runtime.hpp
Overloads
1

Declaration

const
Declaration
int32_t source_tick(int32_t tick)const

Performs `source tick` as part of fixed-step simulation time and frame timing.

ParameterTypeMeaning
tickint32_tValue 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.

Example

C++ example
#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);

Why use it

The method is `const`, so it does not mutate the object through this API surface.

Trade-offs and warnings

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

Related members