This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.json
90 lines (90 loc) · 1.85 KB
/
node.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
90
{
"name": "Walk-in/out player",
"control_ui": "control.html",
"options": [
{
"title": "Walk-in/out Playlist",
"type": "section"
},
{
"title": "Playlist",
"name": "playlist",
"type": "list",
"itemname": "Item",
"items": [
{
"title": "Asset",
"ui_width": 6,
"name": "file",
"type": "resource",
"valid": [
"image",
"video",
"child"
],
"default": "empty.png"
},
{
"title": "Play time",
"ui_width": 3,
"name": "duration",
"type": "duration",
"hint": "How long should this item be displayed on screen. For videos, use their duration",
"default": 8
}
]
},
{
"title": "Configuration",
"type": "section"
},
{
"title": "Switch time",
"ui_width": 4,
"name": "switch_time",
"type": "select",
"doc_link": true,
"options": [
[
0,
"Instantly"
],
[
0.4,
"Fast"
],
[
0.8,
"Slow (default)"
]
],
"default": 0.8
},
{
"title": "Screen Configuration",
"type": "section"
},
{
"title": "Automatic resolution",
"ui_width": 4,
"name": "auto_resolution",
"type": "boolean",
"default": false,
"hint": "If you know the correct output resolution for your display you should enter it manually and leave automatic detection disabled."
},
{
"title": "Manual width",
"ui_width": 4,
"name": "width",
"type": "integer",
"default": 1920
},
{
"title": "Manual height",
"ui_width": 4,
"name": "height",
"type": "integer",
"default": 1080
}
]
}