-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproperties.json
98 lines (92 loc) · 2.16 KB
/
properties.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
91
92
93
94
95
96
97
98
[
{
"name": "color",
"type": "Color",
"description": "The foreground color of widgets."
},
{
"name": "background-color",
"type": "Color",
"description": "The background color of widgets."
},
{
"name": "outline-size",
"type": "float",
"description": "Size of the background outline."
},
{
"name": "outline-color",
"type": "Color",
"description": "Color of the background outline."
},
{
"name": "spacing",
"type": "Vector2",
"description": "Size between neighbouring widgets in a container."
},
{
"name": "padding",
"type": "Vector4",
"description": "How far children widgets should be positioned from the edges."
},
{
"name": "radius",
"type": "Vector4",
"description": "How rounded the background and outline should be."
},
{
"name": "size",
"type": "Vector2",
"description": "Size of the widget."
},
{
"name": "minimum-size",
"type": "Vector2",
"description": "Minimum size of the widget."
},
{
"name": "align-x",
"type": "Enum",
"description": "How this widget should be aligned horizontally inside its cell."
},
{
"name": "align-y",
"type": "Enum",
"description": "How this widget should be aligned vertically inside its cell."
},
{
"name": "font-size",
"type": "Number",
"description": "How big the font for this text should be."
},
{
"name": "text-shadow",
"type": "Color",
"description": "Color of the text shadow."
},
{
"name": "text-shadow-offset",
"type": "Vector2",
"description": "How should be the text shadow positioned relative to the original text."
},
{
"name": "max-width",
"type": "Number",
"description": "Maximum width of text widgets before they start to wrap and span multiple lines."
},
{
"name": "list-direction",
"type": "Enum",
"description": "If this list widget should be reversed or not."
},
{
"name": "icon",
"type": "Identifier",
"description": "The icon tag used for this widget."
},
{
"name": "icon-path",
"type": "String",
"description": "The .svg file path relative to this file."
}
]