-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmod.json
More file actions
157 lines (157 loc) · 3.76 KB
/
mod.json
File metadata and controls
157 lines (157 loc) · 3.76 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"geode": "5.2.0",
"gd": {
"win": "2.2081",
"android": "2.2081",
"mac": "2.2081",
"ios": "2.2081"
},
"version": "1.0.11",
"id": "alk.allium",
"name": "Allium Drawing Tool",
"developer": "alk",
"description": "The drawing tool for Geometry Dash",
"dependencies": {
"geode.node-ids": {
"required": true,
"version": ">=1.11.0"
},
"alphalaneous.editortab_api": {
"required": true,
"version": ">=2.0.0"
},
"alk.ime-input": {
"version": ">=1.0.0",
"required": true
}
},
"links": {
"source": "https://github.com/altalk23/Allium"
},
"tags": ["editor", "enhancement", "utility"],
"resources": {
"spritesheets": {
"AlliumSpritesheet": [
"resources/*.png",
"resources/icons/*.png"
]
},
"sprites": [
"resources/images/*.png"
],
"files": [
"resources/Nunito-Regular.ttf"
]
},
"settings": {
"brushes-header": {
"type": "title",
"name": "Brushes"
},
"pan-editor-in-brush": {
"type": "keybind",
"name": "Pan Editor in Brush",
"default": ["Space"],
"category": "editor",
"description": "Allows you to pan in the editor when you have brush enabled.",
"priority": 1,
"migrate-from": "alk.allium/pan-editor-in-brush"
},
"brush-line-width": {
"type": "float",
"default": 5,
"min": 0.5,
"name": "Brush Width",
"description": "(Temporary) The thickness of the brush",
"max": 30
},
"brush-color-id": {
"type": "int",
"default": 1011,
"name": "Brush Color ID",
"description": "(Temporary) The ID of the brush color",
"min": 1,
"max": 1020
},
"brush-curve-detail": {
"type": "float",
"default": 0.4,
"min": 0.05,
"name": "Curve detail",
"description": "(Temporary) The detail of the curve",
"max": 3
},
"brush-free-threshold": {
"type": "float",
"default": 0.4,
"min": 0.01,
"name": "Free Threshold",
"description": "(Temporary) Value in game units where a point is decimated if its distance to the segment is less than this value",
"max": 1.5
},
"text-header": {
"type": "title",
"name": "Text"
},
"font-path": {
"type": "file",
"description": "(Temporary) The path to the font file",
"default": ""
},
"text-detail-threshold": {
"type": "float",
"default": 0.3,
"min": 0.1,
"name": "Text detail threshold",
"description": "(Temporary) Value in game units where a point is decimated if its distance to the segment is less than this value",
"max": 10.0
},
"text-size": {
"type": "float",
"default": 24,
"min": 1.0,
"name": "Text size",
"description": "(Temporary) The size of the text",
"max": 576.0
},
"triangle-padding": {
"type": "float",
"default": 0,
"min": 0,
"name": "Triangle Padding",
"description": "(Temporary) The percent of padding added to the triangle's size when drawing polygons and text. (Corners will be jagged, recommended if you have gaps showing up, between 1% and 2% works best)",
"max": 5
},
"interface-header": {
"type": "title",
"name": "Interface"
},
"overlay-scale": {
"type": "float",
"default": 1.0,
"min": 0.2,
"name": "Overlay Scale",
"description": "The size of the brush overlay",
"max": 4.0
},
"scale-overlay-with-zoom": {
"type": "bool",
"default": true,
"name": "Scale Overlay with Zoom",
"description": "Whether the brush overlay should stay the same size regardless of the editor zoom level"
},
"deadzone-radius": {
"type": "float",
"default": {
"win": 5.0,
"mac": 5.0,
"android": 10.0,
"ios": 10.0
},
"min": 0.0,
"name": "Deadzone Radius",
"description": "The radius of the deadzone for the curve and polygon brushes, e.g. how far you have to move your finger/mouse before it starts dragging.\nSet to 0 to disable",
"max": 25.0
}
}
}