Reverted initial commit. Implemented hack to listen for menu click events.

This commit is contained in:
armored-dragon 2024-08-27 16:10:46 -05:00
parent 10dc75af5d
commit 1ab2a7e1e3
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -2130,6 +2130,24 @@
if (isActive) {
cameraManager.keyPressEvent(event);
}
// Hacks to get the menu bar buttons to work
// Copy
if (event.key === 67 && event.isControl && !event.isShifted) {
selectionManager.copySelectedEntities();
}
// Paste
if (event.key === 86 && event.isControl && !event.isShifted) {
selectionManager.pasteEntities();
}
// Cut
if (event.key === 88 && event.isControl && !event.isShifted) {
selectionManager.cutSelectedEntities();
}
// Delete
if (event.key === 16777223 && !event.isControl && !event.isShifted) {
createApp.deleteSelectedEntities();
}
};
var keyReleaseEvent = function (event) {
if (isActive) {
@ -2140,7 +2158,12 @@
Controller.keyPressEvent.connect(keyPressEvent);
function deleteKey(value) {
if (value === 1) { // on release
if (value === 0) { // on press
createApp.deleteSelectedEntities();
}
}
function copyKey(value){
if (value === 1) { // on press
createApp.deleteSelectedEntities();
}
}