1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-09-27 21:22:52 +00:00
Files
2025-09-09 10:02:11 -07:00

47 lines
1018 B
JSON

{
"$id": "3246981949",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Use_animation specifies which animation is played when the player uses the item.",
"oneOf": [
{
"enum": [
"none",
"eat",
"drink",
"block",
"bow",
"camera",
"crossbow",
"spear",
"spyglass",
"brush"
],
"title": "Animation",
"type": "string"
},
{
"properties": {
"value": {
"description": "Specifies which animation to play when the the item is used.",
"enum": [
"none",
"eat",
"drink",
"block",
"bow",
"camera",
"crossbow",
"spear",
"spyglass",
"brush"
],
"title": "Animation",
"type": "string"
}
},
"type": "object"
}
],
"title": "minecraft:use_animation",
"x-format-version": "1.20.50"
}