Merge pull request #1250 from Armored-Dragon/feature/notificationCore_sounds_on_chat_message

Added sounds to all incoming chat messages
This commit is contained in:
Dale Glass 2024-11-23 20:44:33 +01:00 committed by GitHub
commit 48564f216b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View file

@ -22,7 +22,12 @@ var DEFAULT_OFFSET = 10;
var FLOOF_NOTIFICATION_CHANNEL = "Floof-Notif";
var MAIN_CHAT_APP_CHANNEL = "Chat";
var ARROW_REGEX = /\</gi;
var notificationSound = SoundCache.getSound(Script.resolvePath("resources/click.wav"));
var soundInjectorOptions = {
localOnly: true,
position: MyAvatar.position,
volume: 0.04
};
var offset = DEFAULT_OFFSET;
@ -48,6 +53,7 @@ function messageReceived(channel, message, sender, local) {
}
} else {
notificationCore.add(cmd.text, cmd.sender, cmd.colour);
playSound();
}
}
}
@ -113,6 +119,10 @@ function cleanUp() {
});
}
function playSound() {
Audio.playSound(notificationSound, soundInjectorOptions);
}
function notif(text, colour) {
var noti = {