Reference
Remy Reference/agent/meshyAnimate
?

meshyAnimate

Apply a preset animation to a rigged 3D character model using Meshy.
mindstudio.meshyAnimate({ rigTaskId, actionId }) → Result

Applies a preset animation to a rigged 3D character via Meshy — the stage after rigging, run on a model meshyRig has already prepared.

Parameters
rigTaskId
string
RequiredID of a completed Meshy rigging task
actionId
number
RequiredAnimation action ID from the Meshy animation library
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.meshyAnimate({
  rigTaskId: /* ... */,
  actionId: /* ... */
});