ApiData().RemoveBehavior

Deletes the Behavior with the given ID.

Description

This function deletes an existing Behavior with the given ID value, modifying the current SILVIA Brain to do so

Example Usage (C#)


bool success = _core.ApiData().RemoveBehavior(144);

Parameters

int

id

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

Returns

The boolean success or failure of the operation.

ApiData()