mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
* Fix folder name typo * Smaller fixes * Shortcut rename to Shortcuts * Fix quoted attributes in UE 5.3 * remove KeyboardShortcutAction * Remove more trivial classes * Rename IKeyboardShortcut * Node delete shortcut
8 lines
304 B
JavaScript
8 lines
304 B
JavaScript
export default class Shortcuts {
|
|
static deleteNodes = "Delete"
|
|
static duplicateNodes = "(bCtrl=True,Key=D)"
|
|
static enableLinkDelete = "LeftAlt"
|
|
static enableZoomIn = ["LeftControl", "RightControl"] // Button to enable more than 1:1 zoom
|
|
static selectAllNodes = "(bCtrl=True,Key=A)"
|
|
}
|