Skip to main content
POST
/
animation
/
montage
play a blended montage on an entity
curl --request POST \
  --url http://localhost:3917/animation/montage \
  --header 'Content-Type: application/json' \
  --data '
{
  "clip": 1,
  "clip_duration": 123,
  "entity_id": 1,
  "blend_in": 123,
  "blend_out": 123,
  "bone_mask": [
    1
  ],
  "speed": 123
}
'
{
  "ok": true,
  "message": "<string>"
}

Body

application/json
clip
integer
required
Required range: x >= 0
clip_duration
number<float>
required
entity_id
integer<int32>
required
Required range: x >= 0
blend_in
number<float>
blend_out
number<float>
bone_mask
integer[] | null
Required range: x >= 0
speed
number<float>

Response

200 - application/json

Montage triggered; ok is false with a message if the entity is missing.

ok
boolean
required
message
string | null