Files
ueblueprint/js/entity/VariableReferenceEntity.js
barsdeveloper 90f19e1bca Entities semplification
* Entities semplification WIP

* Bug fixes after entity semplification

* Fix object serialization
2023-05-05 18:50:31 +02:00

32 lines
717 B
JavaScript
Executable File

import IEntity from "./IEntity.js"
import GuidEntity from "./GuidEntity.js"
export default class VariableReferenceEntity extends IEntity {
static attributes = {
MemberScope: {
type: String,
},
MemberName: {
default: "",
},
MemberGuid: {
type: GuidEntity,
},
bSelfContext: {
type: Boolean,
},
}
static {
this.cleanupAttributes(this.attributes)
}
constructor(values) {
super(values)
/** @type {String} */ this.MemberName
/** @type {GuidEntity} */ this.GuidEntity
/** @type {Boolean} */ this.bSelfContext
}
}