Why use it
It provides direct, allocation-conscious access to the object model module. No exception-based error path is implied by the signature.
EPOK RUNTIME
Method · 1 overload
Performs `configure` as part of the object model module.
void configure(Fixed radius,Fixed strength,Fixed distance)Performs `configure` as part of the object model module.
| Parameter | Type | Meaning |
|---|---|---|
radius | Fixed | Value supplied for radius. Keep referenced or pointed-to data valid for the complete call. |
strength | Fixed | Value supplied for strength. Keep referenced or pointed-to data valid for the complete call. |
distance | Fixed | Value supplied for distance. Keep referenced or pointed-to data valid for the complete call. |
Returns: Nothing (void).
#include "object_model.hpp"
// Assume these named values have been initialized with valid data:
// Fixed radius
// Fixed strength
// Fixed distance
epok::BlobShadowComponent& object = /* obtain a valid instance */;
object.configure(radius, strength, distance);It provides direct, allocation-conscious access to the object model 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/object_model.hpp:869