mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:22:07 +02:00
remembered that macs exist
This commit is contained in:
parent
aaf10cec39
commit
526b210fcd
1 changed files with 3 additions and 3 deletions
|
@ -14,11 +14,11 @@
|
|||
(function () { // BEGIN LOCAL_SCOPE
|
||||
var snapActivateSound = SoundCache.getSound(Script.resourcesPath() + "sounds/snapshot/snap.wav");
|
||||
function keyPressEvent(event) {
|
||||
if (event.text.toUpperCase() === "B" && event.isControl && !event.isShifted && !event.isAlt) {
|
||||
if (event.text.toUpperCase() === "B" && event.isControl && !event.isShifted && !event.isAlt && !event.isCommand) {
|
||||
Window.openWebBrowser();
|
||||
} else if (event.text.toUpperCase() === "N" && event.isControl && !event.isShifted && !event.isAlt) {
|
||||
} else if (event.text.toUpperCase() === "N" && event.isControl && !event.isShifted && !event.isAlt && !event.isCommand) {
|
||||
Users.toggleIgnoreRadius();
|
||||
} else if (event.text.toUpperCase() === "P" && !event.isControl && !event.isShifted && !event.isAlt) {
|
||||
} else if (event.text.toUpperCase() === "P" && !event.isControl && !event.isShifted && !event.isAlt && !event.isCommand) {
|
||||
Audio.playSound(snapActivateSound, {
|
||||
position: { x: MyAvatar.position.x, y: MyAvatar.position.y, z: MyAvatar.position.z },
|
||||
localOnly: true,
|
||||
|
|
Loading…
Reference in a new issue