From cf3afa8855843aacc2ab7842c87a12ee66ec996f Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Mon, 2 Sep 2024 12:29:44 -0500 Subject: [PATCH] Prevent duplicate actions. --- scripts/system/create/edit.js | 26 ++------------------------ 1 file changed, 2 insertions(+), 24 deletions(-) diff --git a/scripts/system/create/edit.js b/scripts/system/create/edit.js index 148e1efba1..c9f167e54b 100644 --- a/scripts/system/create/edit.js +++ b/scripts/system/create/edit.js @@ -2157,11 +2157,6 @@ Controller.keyReleaseEvent.connect(keyReleaseEvent); Controller.keyPressEvent.connect(keyPressEvent); - function deleteKey(value) { - if (value === 0) { // on release - createApp.deleteSelectedEntities(); - } - } function deselectKey(value) { if (value === 0) { // on release selectionManager.clearSelections(this); @@ -3123,11 +3118,6 @@ var isOnMacPlatform = Controller.getValue(Controller.Hardware.Application.PlatformMac); var mapping = Controller.newMapping(CONTROLLER_MAPPING_NAME); - if (isOnMacPlatform) { - mapping.from([Controller.Hardware.Keyboard.Backspace]).to(deleteKey); - } else { - mapping.from([Controller.Hardware.Keyboard.Delete]).to(deleteKey); - } mapping.from([Controller.Hardware.Keyboard.T]).to(toggleKey); mapping.from([Controller.Hardware.Keyboard.F]).to(focusKey); mapping.from([Controller.Hardware.Keyboard.J]).to(gridKey); @@ -3138,15 +3128,9 @@ mapping.from([Controller.Hardware.Keyboard["7"]]).to(quickRotate90xKey); mapping.from([Controller.Hardware.Keyboard["8"]]).to(quickRotate90yKey); mapping.from([Controller.Hardware.Keyboard["9"]]).to(quickRotate90zKey); - mapping.from([Controller.Hardware.Keyboard.X]) - .when([Controller.Hardware.Keyboard.Control]) - .to(whenReleased(function() { selectionManager.cutSelectedEntities() })); mapping.from([Controller.Hardware.Keyboard.C]) .when([Controller.Hardware.Keyboard.Control]) .to(whenReleased(function() { selectionManager.copySelectedEntities() })); - mapping.from([Controller.Hardware.Keyboard.V]) - .when([Controller.Hardware.Keyboard.Control]) - .to(whenReleased(function() { selectionManager.pasteEntities() })); mapping.from([Controller.Hardware.Keyboard.D]) .when([Controller.Hardware.Keyboard.Control]) .to(whenReleased(function() { selectionManager.duplicateSelection() })); @@ -3170,10 +3154,8 @@ var pressedValue = 0.0; - if ((!isOnMacPlatform && keyUpEvent.keyCodeString === "Delete") - || (isOnMacPlatform && keyUpEvent.keyCodeString === "Backspace")) { - - deleteKey(pressedValue); + if (isOnMacPlatform && keyUpEvent.keyCodeString === "Backspace") { + createApp.deleteSelectedEntities(); } else if (keyUpEvent.keyCodeString === "T") { toggleKey(pressedValue); } else if (keyUpEvent.keyCodeString === "F") { @@ -3194,12 +3176,8 @@ quickRotate90yKey(pressedValue); } else if (keyUpEvent.keyCodeString === "9") { quickRotate90zKey(pressedValue); - } else if (keyUpEvent.controlKey && keyUpEvent.keyCodeString === "X") { - selectionManager.cutSelectedEntities(); } else if (keyUpEvent.controlKey && keyUpEvent.keyCodeString === "C") { selectionManager.copySelectedEntities(); - } else if (keyUpEvent.controlKey && keyUpEvent.keyCodeString === "V") { - selectionManager.pasteEntities(); } else if (keyUpEvent.controlKey && keyUpEvent.keyCodeString === "D") { selectionManager.duplicateSelection(); } else if (!isOnMacPlatform && keyUpEvent.controlKey && !keyUpEvent.shiftKey && keyUpEvent.keyCodeString === "Z") {