-
Notifications
You must be signed in to change notification settings - Fork 1
/
format.json
89 lines (89 loc) · 2.86 KB
/
format.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"type": "GAME",
"window": {
"width": 1024,
"height": 768,
"title": "BKENGINE TEST",
"icon": "icon.ico"
},
"interfaces":{
"settings": "ini",
"event": "sdl_event"
},
"active": 0,
"fonts": [
{
"file": "FUTURAB.ttf",
"name": "futurab"
},
{
"file": "Meath.ttf",
"name": "meath"
}
],
"scenes": [
{
"type": "SCENE",
"name": "testscene",
"elements": [
{
"active": "testanimation",
"type": "ELEMENT",
"name": "testelement",
"render_box": {
"x": 0,
"y": 0,
"w": 100,
"h": 100
},
"collision_box": {
"x": 0,
"y": 0,
"w": 100,
"h": 100
},
"collision_layer": -1,
"frame": 123,
"flip": false,
"animations": [
{
"type": "ANIMATION",
"name": "testanimation",
"frames_per_texture": 60,
"textures": [
{
"type": "TEXTURE",
"flip": false,
"size": {
"x": 0,
"y": 0,
"w": 100,
"h": 100
},
"clip": {
"x": 0,
"y": 0,
"w": 100,
"h": 100
},
"color": {
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"texture_type": "IMAGE",
"path": "jo.png",
"text": "test",
"size": 50,
"font_name": "futurab",
"quality": "BLENDED"
}
]
}
]
}
]
}
]
}