-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.json
76 lines (75 loc) · 1.95 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
{
"name": "Plugin: Scroller",
"options": [{
"title": "Scroller",
"type": "section"
}, {
"title": "Font",
"ui_width": 4,
"name": "font",
"type": "font",
"doc_link": true,
"default": "default-font.ttf"
}, {
"title": "Size",
"ui_width": 2,
"type": "integer",
"name": "size",
"default": 100
}, {
"title": "Font Color",
"ui_width": 2,
"type": "color",
"name": "color",
"default": [1,1,1,1]
}, {
"title": "Scroll Speed",
"ui_width": 4,
"name": "speed",
"type": "select",
"options": [
[ 30, "Slow"],
[ 60, "Normal"],
[120, "Fast"],
[180, "Faster"],
[240, "Even faster"]
],
"default": 120
},
{
"title": "Content",
"type": "section"
}, {
"title": "Scroller content and appearance",
"name": "texts",
"type": "list",
"itemname": "Text",
"items": [{
"title": "Text",
"ui_width": 6,
"name": "text",
"type": "string",
"default": ""
}, {
"title": "Font Color",
"hint": "Select a custom color for this item. Only used if not 0,0,0,0, so be sure to select a non-transparent alpha value.",
"ui_width": 2,
"type": "color",
"name": "color",
"default": [0,0,0,0]
}, {
"title": "Blink",
"ui_width": 2,
"type": "boolean",
"name": "blink",
"default": false
}, {
"title": "Show",
"hint": "Show this content in the scroller? If you want to add content but not show it yet, uncheck this option.",
"ui_width": 2,
"type": "boolean",
"name": "show",
"default": true
}]
}]
}