ApiData().SetExuderPagerTags
Sets the given Exuder’s PAGER Tags field.
Description
Sets the given Exuder’s PAGER Tags field for performance data
Example Usage (C#)
//Setting the PAGER Tags in an Exuder to use our Default LeftHand Pose
string presetName = “LeftHandDefault”;
string pagerTags = _core.ApiBrain().GetPAGERTagPresetData(presetName);
int behaviorID = 17, exuderID = 0;
bool success = _core.ApiData().SetExuderPagerTags(behaviorID, exuderID, pagerTags);
Parameters
int |
id |
The integer numeric value or variable representing the unique ID of the Behavior containing the Exuder. |
int |
exuderId |
The integer numeric value or variable representing the indexed ID of the Exuder, separate from the Behavior ID. |
string |
pagerTags |
The string containing the PAGER Tags for performance of the given Exuder. |
Returns
The boolean success or failure of the operation.