-
Notifications
You must be signed in to change notification settings - Fork 0
/
additional_artifacts.json
27 lines (26 loc) · 1.33 KB
/
additional_artifacts.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
// See https://www.audiokinetic.com/library/edge/?source=SDK&id=effectplugin_tools.html#effect_plugin_tools_packaging_additional_files
// for the documentation about the additional_artifacts.json format
{
// List of additional files to package for the Authoring platform
"Authoring": [
{
// The files in the Help folder located at the root of the plug-in directory
// will be packaged so that they are installed in the Authoring/Help/ambiBIN_generic folder
// of a Wwise installation
"Authoring/Help/ambiBIN_generic": ["Help/*"],
// Similarly for the files in the FactoryAssets folder
"Authoring/Data/Factory Assets/ambiBIN_generic": ["FactoryAssets/*"]
}
]
// List of additional files to package for the <DeploynmentPlatform> platform
// "<DeploymentPlatform>": [
// // Each entry is either:
// // - A path relative to the root of your Wwise installation (can contain glob patterns);
// // - A destination -> sources object where the destination is a path relative to the root
// // of your Wwise installation and the sources are paths relative to the root of the
// // plug-in directory (can contain glob patterns).
// string | { string: [string] },
// ...
// ],
// ...
}