forked from public/foundryvtt-reve-de-dragon
#92 Armes à 2 mains gérées dans le HUD
This commit is contained in:
19
module/rdd-audio.js
Normal file
19
module/rdd-audio.js
Normal file
@ -0,0 +1,19 @@
|
||||
|
||||
/* -------------------------------------------- */
|
||||
const context2file = {
|
||||
"argent": { file: "son_piece_monnaie.mp3", isGlobal: false }
|
||||
}
|
||||
|
||||
/* -------------------------------------------- */
|
||||
export class RdDAudio {
|
||||
|
||||
/* -------------------------------------------- */
|
||||
static PlayContextAudio(context) {
|
||||
let audioData = context2file[context];
|
||||
if ( audioData ) {
|
||||
let audioPath = "systems/foundryvtt-reve-de-dragon/sounds/" + audioData.file;
|
||||
console.log(`wfrp4e | Playing Sound: ${audioPath}`)
|
||||
AudioHelper.play({ src: audioPath }, audioData.isGlobal);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user