Epok Engine

EPOK RUNTIME

epok::SkeletalPlaybackState::sampled_frame

Field

Field

Exposes `sampled_frame` on `epok::SkeletalPlaybackState` for the epok module.

Belongs to
epok::SkeletalPlaybackState
Header
epok.hpp

Declaration

Declaration
uint32_t sampled_frame

Exposes `sampled_frame` on `epok::SkeletalPlaybackState` for the epok module.

Type
uint32_t
Storage
Per instance

Example

C++ example
#include "epok.hpp"

epok::SkeletalPlaybackState& object = /* obtain a valid instance */;
auto value = object.sampled_frame;

// When mutation is valid for this object:
// object.sampled_frame = replacement;

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/epok.hpp:188