mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 22:32:49 +02:00
Added sounds to all incoming chat messages.
This commit is contained in:
parent
9503fae612
commit
600b8a4e84
2 changed files with 11 additions and 1 deletions
|
@ -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 = {
|
||||
|
|
BIN
scripts/communityScripts/notificationCore/resources/click.wav
Normal file
BIN
scripts/communityScripts/notificationCore/resources/click.wav
Normal file
Binary file not shown.
Loading…
Reference in a new issue