mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-20 21:45:56 +08:00
Attribute cleanup forgot
This commit is contained in:
@@ -11,6 +11,10 @@ export default class UnknownKeysEntity extends IEntity {
|
||||
},
|
||||
}
|
||||
|
||||
static {
|
||||
this.cleanupAttributes(this.attributes)
|
||||
}
|
||||
|
||||
constructor(values) {
|
||||
super(values)
|
||||
/** @type {String} */ this.lookbehind
|
||||
|
||||
@@ -18,6 +18,10 @@ export default class VariableReferenceEntity extends IEntity {
|
||||
},
|
||||
}
|
||||
|
||||
static {
|
||||
this.cleanupAttributes(this.attributes)
|
||||
}
|
||||
|
||||
constructor(values) {
|
||||
super(values)
|
||||
/** @type {String} */ this.MemberName
|
||||
|
||||
@@ -7,6 +7,10 @@ export default class Vector2DEntity extends IEntity {
|
||||
Y: 0,
|
||||
}
|
||||
|
||||
static {
|
||||
this.cleanupAttributes(this.attributes)
|
||||
}
|
||||
|
||||
constructor(values) {
|
||||
super(values)
|
||||
/** @type {Number} */ this.X
|
||||
|
||||
@@ -8,6 +8,10 @@ export default class VectorEntity extends IEntity {
|
||||
Z: 0,
|
||||
}
|
||||
|
||||
static {
|
||||
this.cleanupAttributes(this.attributes)
|
||||
}
|
||||
|
||||
constructor(values) {
|
||||
super(values)
|
||||
/** @type {Number} */ this.X
|
||||
|
||||
Reference in New Issue
Block a user