-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
45 lines (45 loc) · 1.06 KB
/
data.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
{
"rooms": [
{
"id": 1,
"background": "backgrounds/reception.jpg",
"active": true,
"navigation": {
"left": 2,
"right": 3
},
"articles": [
{
"position": {
"x": 380,
"y": 100
},
"size": {
"height": 200,
"width": 200
},
"action": {
"type": "NAVIGATE",
"id": 3
}
}
]
},
{
"id": 2,
"background": "backgrounds/stairs.jpg",
"active": false,
"navigation": {
"right": 1
}
},
{
"id": 3,
"background": "backgrounds/bedroom.jpg",
"active": false,
"navigation": {
"left": 1
}
}
]
}