ApiData().RemoveExuder

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

Description

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

Example Usage (C#)


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

Parameters

int

id

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

int

exuderId

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

Returns

The boolean success or failure of the operation.

ApiData()