-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlgui2Font.json
More file actions
53 lines (53 loc) · 1.71 KB
/
lgui2Font.json
File metadata and controls
53 lines (53 loc) · 1.71 KB
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.lavishsoft.com/schema/lgui2Font.json",
"description": "A LavishGUI2 Font",
"oneOf":[
{
"type":"string",
"description": "The name of a global Font to use"
},
{
"type": "object",
"properties": {
"globalFont":{
"type":"string",
"description": "The name of a global Font to use for base font properties, instead of its parent Font"
},
"face": {
"type": "string",
"description": "Face of the font, e.g. Arial or Segoe UI",
"examples": [
"Arial",
"Segoe UI"
]
},
"fixed": {
"type": "boolean",
"description": "true if a fixed-width font should be used if possible"
},
"bold": {
"type": "boolean",
"description": "true if the font should be bolded"
},
"height": {
"type": "integer",
"examples": [
10,
11,
12
],
"description": "the font height in points"
},
"heightOffset": {
"type": "integer",
"description": "the font height in points, relative to its parent Font"
},
"heightFactor": {
"type": "number",
"description": "the height factor for the font. The actual height will be heightOffset+(heightFactor*parentHeight)"
}
}
}
]
}