-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
42 lines (42 loc) · 1.07 KB
/
config.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
{
"installer": {
"name": "C4DPluginInstaller",
"bundle_identifier": "com.niklasrosenstein.c4dinstaller"
},
"uninstaller": {
"enabled": true,
"target_directory": "$c4d/plugins/C4DInstaller_ExamplePlugin/",
"name": "uninstall",
"bundle_identifier": "com.niklasrosenstein.c4dinstaller_uninstaller"
},
"palette": {
"background": [40, 40, 40],
"foreground": [200, 200, 200],
"alternate_background": [70, 70, 70],
"button_background": [50, 50, 50],
"button_foreground": [220, 220, 220],
"button_disabled_background": [70, 70, 70],
"button_disabled_foreground": [160, 160, 160]
},
"features": {
"!plugin": "$plugin",
"docs": "$documentation",
"presets": "$presets"
},
"install": {
"slowdown": 0.5,
"copyfiles": {
"plugin": {
"$src/plugin/": "$c4d/plugins/C4DInstaller_ExamplePlugin/"
},
"docs": {
"$src/doc/": "$c4d/plugins/C4DInstaller_ExamplePlugin/doc/"
},
"presets": {
"$src/library/": "$c4d/library/"
}
},
"dependencies": [
]
}
}