-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
79 lines (79 loc) · 1.76 KB
/
manifest.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
{
"name": "UserProfile",
"namespace": "GodotModding",
"version_number": "0.2.0",
"description": "Example Mod for User Profiles",
"website_url": "https://github.com/GodotModding",
"dependencies": [],
"extra": {
"godot": {
"authors": [
"GodotModding"
],
"optional_dependencies": [],
"compatible_game_version": [],
"compatible_mod_loader_version": [
"6.0.0"
],
"incompatibilities": [],
"load_before": [],
"tags": [],
"config_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Config",
"description": "Config for this Mod",
"type": "object",
"properties": {
"select_profile_text": {
"title": "Select profile text:",
"type": "string",
"default": "Select Profile"
},
"material_settings": {
"title": "Material Settings",
"type": "object",
"properties": {
"square_scale": {
"type": "number",
"title": "Square Scale",
"minimum": 0.0,
"maximum": 0.3,
"multipleOf": 0.001,
"default": 0.1
},
"animate": {
"type": "boolean",
"title": "Animate",
"default": false
},
"blur_amount": {
"type": "number",
"title": "Blur Amount",
"minimum": 0.0,
"maximum": 10.0,
"multipleOf": 0.1,
"default": 5.1
},
"mix_amount": {
"type": "number",
"title": "Mix Amount",
"minimum": 0.0,
"maximum": 1.0,
"multipleOf": 0.01,
"default": 0.71
},
"color": {
"type": "string",
"title": "Color Over",
"format": "color",
"default": "#f7000000"
}
}
}
}
},
"description_rich": "",
"image": null
}
}
}