ApiData().RemoveAbsorber

Deletes the Absorber represented by the given Behavior and Absorber ID pair.

Description

This method deletes an existing Absorber within an existing Behavior, modifying the current SILVIA Brain to do so.

Example Usage (C#)


bool success = _core.ApiData().RemoveAbsorber(147, 0);

Parameters

int

id

The integer numeric value or variable representing the unique ID of the Behavior containing the Absorber to be deleted.

int

absorberId

The integer numeric value or variable representing the indexed ID of the Absorber, separate from the Behavior ID.

Returns

The boolean success or failure of the operation

ApiData()