Epok Engine

EPOK RUNTIME

epok::NavigationObstacleComponent::on_enable

Method · 1 overload

Method

Performs `on enable` as part of the navigation components module.

Belongs to
epok::NavigationObstacleComponent
Header
navigation_components.hpp
Overloads
1

Declaration

Declaration
void on_enable() override

Performs `on enable` as part of the navigation components module.

This overload takes no parameters.

Returns: Nothing (void).

Example

C++ example
#include "navigation_components.hpp"

epok::NavigationObstacleComponent& object = /* obtain a valid instance */;

object.on_enable();

Why use it

It provides direct, allocation-conscious access to the navigation components module. No exception-based error path is implied by the signature.

Trade-offs and warnings

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:70

Related members