remembered that macs exist

This commit is contained in:
PrestonB1123 2019-07-12 12:39:58 -07:00
parent aaf10cec39
commit 526b210fcd

View file

@ -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,