mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
import KeyboardShortcut from "./KeyboardShortcut";
|
|
|
|
|
|
export default class KeyvoardCanc extends KeyboardShortcut {
|
|
|
|
constructor(target, blueprint, options = {}) {
|
|
options.key = "Delete"
|
|
super(target, blueprint, options)
|
|
}
|
|
|
|
fire() {
|
|
this.blueprint.deleteNode(...this.blueprint.getNodes(true))
|
|
}
|
|
} |