Epok Engine

EPOK RUNTIME

epok::timeline::layer_resolver

Variable

Variable

The effect service supplies one typed generation validator.

Belongs to
epok::timeline
Header
timeline_runtime.hpp

Declaration

Declaration
EffectLayer *(*layer_resolver)(EffectLayerHandle)

The effect service supplies one typed generation validator.

Type
EffectLayer *(*)(EffectLayerHandle)
Storage
Namespace scope

Example

C++ example
#include "timeline_runtime.hpp"

auto callback = epok::timeline::layer_resolver;

// Assign a function with the exact declared signature:
// epok::timeline::layer_resolver = &myCallback;

When it helps

Use this member when you need direct access to the state represented by its declared type.

Trade-offs and warnings

Direct field access has no validation step. Keep the owning object alive, respect units and ranges, and do not mutate state while hardware or another subsystem is consuming it.

Declared in runtime/timeline_runtime.hpp:12