-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbmbfmod.json
30 lines (30 loc) · 875 Bytes
/
bmbfmod.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
{
"id": "{{ mod.id }}",
"name": "{{ mod.name }}",
"author": "{{ mod.author }}",
"description": [
{% for l in mod.description %}
"{{ l }}",
{% endfor %}
],
"category": "{{ mod.category }}",
"gameVersion": "{{ mod.gameVersion }}",
"version": "0.1.0",
"platform": "Quest",
"components": [
{
"type": "HookMod",
"installAction": {
"installLibraryFile": "lib{{ mod.out }}.so"
},
"uninstallAction": {
"removeLibraryFile": "lib{{ mod.out }}.so"
}
},
{
"type": "FileCopyMod",
"sourceFileName": "libbeatsaber-hook_2019_0_2_1.so",
"targetRootedPathAndFileName": "/sdcard/Android/data/com.beatgames.beatsaber/files/libs/libbeatsaber-hook_2019_0_2_1.so"
}
]
}