Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/use_animation.json

22 lines
607 B
JSON
Raw Normal View History

{
"$id": "blockception.minecraft.behavior.items.minecraft:use_animation",
"additionalProperties": false,
"required": [ "value" ],
"type": "object",
"title": "Use Animation",
"description": "This component determines which animation plays when using the item.",
"properties": {
"value": {
"title": "Value",
"description": "Which animation to play when using the item.",
"enum": [
"bow",
"eat",
"crossbow",
"drink",
"camera"
]
}
}
}