forked from bernie-g/Minecraft-bedrock-json-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflipbook_textures.json
61 lines (61 loc) · 1.67 KB
/
flipbook_textures.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.resource.texture.flipbook",
"additionalProperties": false,
"type": "array",
"title": "The minecraft flipbook texture file",
"description": "",
"items": {
"additionalProperties": false,
"type": "object",
"description": "A single flipbook texture",
"title": "Flipbook texture",
"properties": {
"atlas_index": {
"type": "integer",
"title": "Atlas index",
"description": "TODO: add description"
},
"atlas_tile": {
"type": "string",
"pattern": "^[a-z0-9_\\-]*$",
"title": "Atlas index",
"description": "TODO: add description"
},
"atlas_tile_variant": {
"type": "integer",
"title": "Atlas index",
"description": "TODO: add description"
},
"blend_frames": {
"type": "boolean",
"title": "Atlas index",
"description": "TODO: add description"
},
"flipbook_texture": {
"description": "A texture file",
"type": "string",
"pattern": "^textures/.+$"
},
"frames": {
"description": "The collection of frame index to display",
"type": "array",
"items": {
"description": "The index of the frame",
"type": "integer",
"title": "Frame index",
"minimum": 0
}
},
"replicate": {
"type": "integer",
"title": "Atlas index",
"description": "TODO: add description"
},
"ticks_per_frame": {
"description": "The amount of ticks to wait between frames",
"type": "integer"
}
}
}
}