Rename value key to default

This commit is contained in:
barsdeveloper
2023-04-01 19:40:34 +02:00
parent 750c745acc
commit b55b7b430a
26 changed files with 334 additions and 187 deletions

View File

@@ -4,13 +4,23 @@ import IEntity from "./IEntity.js"
export default class KeyBindingEntity extends IEntity {
static attributes = {
ActionName: "",
bShift: false,
bCtrl: false,
bAlt: false,
bCmd: false,
ActionName: {
default: "",
},
bShift: {
default: false,
},
bCtrl: {
default: false,
},
bAlt: {
default: false,
},
bCmd: {
default: false,
},
Key: {
type: IdentifierEntity
type: IdentifierEntity,
},
}