This may take a moment to load, but then it will log to the console the ID for every installed plugin, along with its name as used in the editor (since this is sometimes different to the ID for legacy reasons).
Listing ACE IDs
The C3SDK_ListACEIDs(addonType, addonId, aceType)
method lists the IDs for an addon's actions, conditions or expressions (ACEs). The parameters it takes are:
- addonType: as before, either
"plugin"
or "behavior"
.
- addonId: the ID of the addon, which can be found using
C3SDK_ListAddonIDs()
.
- aceType: one of
"actions"
, "conditions"
or "expressions"
, determining which to list.
For example the following call will list all of the Sprite plugin's action IDs. The parameters each takes are also listed.
C3SDK_ListACEIDs("plugin", "Sprite", "actions")