ApiMem().GetAllGroups

Returns a string containing all of the Groups in memory, separated by the “|” character.

Example Usage (C#)


//Suppose we had 3 Behavior Groups: conversational, default, and greetings
string groups = _core.ApiMem().GetAllGroups();
Debug.Log(“All Groups: ” + groups);

//Your expected Debug Console message would look like:
//”All Groups: conversational|default|greetings”

Parameters

None.

Returns

The string containing the “|” separated (Pipe-separated) list of all Groups in memory.

See Also

  • ApiMem().GetActiveGroups