mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
19 lines
432 B
JavaScript
19 lines
432 B
JavaScript
import IEntity from "./IEntity"
|
|
|
|
export default class KeyBindingEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
bCtrlDown: false,
|
|
bAltDown: false,
|
|
bShiftDown: false,
|
|
Key: String,
|
|
CommandName: String,
|
|
}
|
|
|
|
/** @type {Boolean} */ bCtrlDown
|
|
/** @type {Boolean} */ bAltDown
|
|
/** @type {Boolean} */ bShiftDown
|
|
/** @type {String} */ Key
|
|
/** @type {String} */ CommandName
|
|
}
|