Epok Engine

EPOK RUNTIME

epok::MoveSample::displacement

Field

Field

Exposes `displacement` on `epok::MoveSample` for the gameplay api module.

Belongs to
epok::MoveSample
Header
gameplay_api.hpp

Declaration

Declaration
GameplayVector3 displacement

Exposes `displacement` on `epok::MoveSample` for the gameplay api module.

Type
GameplayVector3
Storage
Per instance

Example

C++ example
#include "gameplay_api.hpp"

epok::MoveSample& object = /* obtain a valid instance */;
auto value = object.displacement;

// When mutation is valid for this object:
// object.displacement = 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/gameplay_api.hpp:58