Files
minecraft-bedrock-json-schemas/source/resource/textures/flipbook_textures.json

64 lines
1.7 KiB
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$id": "blockception.minecraft.resource.texture.flipbook",
"additionalProperties": false,
2021-05-26 01:09:39 +02:00
"description": "The file that specifies animated textures",
2021-03-21 15:18:38 +01:00
"title": "Flipbook Texture File",
2021-05-26 01:09:39 +02:00
"type": "array",
2020-11-01 17:22:42 +01:00
"items": {
"additionalProperties": false,
"description": "A single flipbook texture",
2021-03-21 15:18:38 +01:00
"title": "Flipbook Texture",
2021-05-26 01:09:39 +02:00
"type": "object",
2020-11-01 17:22:42 +01:00
"properties": {
2021-05-26 01:09:39 +02:00
"atlas_index": {
"description": "TODO: add description",
"title": "Atlas Index",
"type": "integer"
},
"atlas_tile": {
"description": "TODO: add description",
"pattern": "^[a-z0-9_\\-]*$",
"title": "Atlas Index",
"type": "string"
},
"atlas_tile_variant": {
"description": "TODO: add description",
"title": "Atlas Index",
"type": "integer"
},
"blend_frames": {
"description": "TODO: add description",
"title": "Atlas Index",
"type": "boolean"
},
"flipbook_texture": {
"description": "A texture file",
"pattern": "^textures/.+$",
"title": "Flipbook texture",
"type": "string"
},
2020-11-01 17:22:42 +01:00
"frames": {
2021-05-26 01:09:39 +02:00
"title": "Frames",
2020-11-01 17:22:42 +01:00
"description": "The collection of frame index to display",
2021-05-26 01:09:39 +02:00
"items": {
"description": "The index of the frame",
"minimum": 0,
"title": "Frame Index",
"type": "integer"
},
"type": "array"
},
"replicate": {
"description": "TODO: add description",
"title": "Atlas Index",
"type": "integer"
2020-11-01 17:22:42 +01:00
},
2021-05-26 01:09:39 +02:00
"ticks_per_frame": {
"description": "The amount of ticks to wait between frames",
"title": "Ticks per frame",
"type": "integer"
}
2020-11-01 17:22:42 +01:00
}
}
}