Use audio files in OGG Vorbis format

This commit is contained in:
Francesco Balestrieri
2016-01-14 13:29:17 +02:00
parent 5d60963bf5
commit 68503c26cd
12 changed files with 18 additions and 16 deletions
+8 -6
View File
@@ -1,26 +1,28 @@
Licenses for the sound files
=============================
*boost.mp3*
*boost.ogg*
Created by IFartInUrGeneralDirection and distributed under
Creative Commons 3.0 Attribution 3.0 Unported license.
*crash.mp3*
*crash.ogg*
Created by qubodup and is published into Public Domain.
*wind.mp3*
*wind.ogg*
Created by kangaroovindaloo and distributed under
Creative Commons 3.0 Attribution 3.0 Unported license.
This SFX is further cutted and adjusted by Licson.
*bg.mp3*
*bg.ogg*
Created by mu6k and is released into Public Domain.
Further adjusted by Licson.
*destroyed.mp3*
*destroyed.ogg*
Created by beman87 and is distributed under Creative Commons Attribution 3.0 Unported license.
This SFX is further adjusted by Licson.
This SFX is further adjusted by Licson.
All sound files converted to OGG Vorbis by baleboy using VLC Media Player.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+10 -10
View File
@@ -86,27 +86,27 @@ bkcore.hexgl.tracks.Cityscape = {
},
sounds: {
bg: {
src: 'audio/bg.mp3',
src: 'audio/bg.ogg',
loop: true,
usePanner: false
},
crash: {
src: 'audio/crash.mp3',
src: 'audio/crash.ogg',
loop: false,
usePanner: true
},
destroyed: {
src: 'audio/destroyed.mp3',
src: 'audio/destroyed.ogg',
loop: false,
usePanner: false
},
boost: {
src: 'audio/boost.mp3',
src: 'audio/boost.ogg',
loop: false,
usePanner: true
},
wind: {
src: 'audio/wind.mp3',
src: 'audio/wind.ogg',
loop: true,
usePanner: true
}
@@ -170,23 +170,23 @@ bkcore.hexgl.tracks.Cityscape = {
},
sounds: {
bg: {
src: 'audio/bg.mp3',
src: 'audio/bg.ogg',
loop: true
},
crash: {
src: 'audio/crash.mp3',
src: 'audio/crash.ogg',
loop: false
},
destroyed: {
src: 'audio/destroyed.mp3',
src: 'audio/destroyed.ogg',
loop: false
},
boost: {
src: 'audio/boost.mp3',
src: 'audio/boost.ogg',
loop: false
},
wind: {
src: 'audio/wind.mp3',
src: 'audio/wind.ogg',
loop: true
}
}