Added sounds to all incoming chat messages.

This commit is contained in:
armored-dragon 2024-11-22 06:38:19 -06:00
parent 9503fae612
commit 600b8a4e84
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B
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 = {