Rigs API
A multicam job allows you to optionally specify the rig that you want to use for retargeting. You can get a list of available rigs by using the below query
- GraphQL
{
listRigs {
items{
name
}
after
first
}
}
Response
{
"data": {
"listRigs": {
"items": [
{
"name": "decentraland"
},
{
"name": "mixamo_f"
},
{
"name": "mixamo_m"
},
{
"name": "move_mo"
},
{
"name": "move_ve"
},
{
"name": "ue5_manne"
},
{
"name": "ue5_quinn"
}
],
"after": null,
"first": 50
}
}
}