Back to OGG

This commit is contained in:
Anuken
2020-11-11 10:55:19 -05:00
parent 4f4f8f08bb
commit a4f5c1c55f
139 changed files with 54 additions and 7 deletions

View File

@@ -14,6 +14,22 @@ task copyAssets(){
from "../core/assets"
into "assets/"
}
exec{
ignoreExitValue true
commandLine "sh", "./convert_audio.sh", "assets/sounds"
}
exec{
ignoreExitValue true
commandLine "sh", "./convert_audio.sh", "assets/music"
}
delete{
delete fileTree('assets'){
include '**/*.ogg'
}
}
}
}