Why use it
It provides direct, allocation-conscious access to the navigation components module. No exception-based error path is implied by the signature.
EPOK RUNTIME
Method · 1 overload
Performs `tick` as part of the navigation components module.
void tick(Fixed dt) overridePerforms `tick` as part of the navigation components module.
| Parameter | Type | Meaning |
|---|---|---|
dt | Fixed | Value supplied for dt. Keep referenced or pointed-to data valid for the complete call. |
Returns: Nothing (void).
#include "navigation_components.hpp"
// Assume these named values have been initialized with valid data:
// Fixed dt
epok::NavigationAgentComponent& object = /* obtain a valid instance */;
object.tick(dt);It provides direct, allocation-conscious access to the navigation components module. No exception-based error path is implied by the signature.
Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.
Declared in runtime/navigation_components.hpp:117
arrivedPerforms `arrived` as part of the navigation components module.Methodbegin_playBegins play as part of the navigation components module.Methodclass_idPerforms `class id` as part of the navigation components module.Methodend_playEnds play as part of the navigation components module.MethodfailedPerforms `failed` as part of the navigation components module.Methodmove_toPerforms `move to` as part of the navigation components module.Methodon_disablePerforms `on disable` as part of the navigation components module.MethodstatusPerforms `status` as part of the navigation components module.MethodstopStops stop as part of the navigation components module.Method