mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-15 17:54:52 +08:00
Bugfixes, added pin types, colors
This commit is contained in:
40
js/entity/PinTypeEntity.js
Normal file
40
js/entity/PinTypeEntity.js
Normal file
@@ -0,0 +1,40 @@
|
||||
import IEntity from "./IEntity"
|
||||
|
||||
export default class PinTypeEntity extends IEntity {
|
||||
|
||||
static attributes = {
|
||||
TerminalCategory: {
|
||||
value: "",
|
||||
showDefault: false,
|
||||
},
|
||||
TerminalSubCategory: {
|
||||
value: "",
|
||||
showDefault: false,
|
||||
},
|
||||
bTerminalIsConst: {
|
||||
value: false,
|
||||
showDefault: false,
|
||||
},
|
||||
bTerminalIsWeakPointer: {
|
||||
value: false,
|
||||
showDefault: false,
|
||||
},
|
||||
bTerminalIsUObjectWrapper: {
|
||||
value: false,
|
||||
showDefault: false,
|
||||
},
|
||||
}
|
||||
|
||||
static {
|
||||
this.cleanupAttributes(this.attributes)
|
||||
}
|
||||
|
||||
constructor(values) {
|
||||
super(values)
|
||||
/** @type {String} */ this.TerminalCategory
|
||||
/** @type {String} */ this.TerminalSubCategory
|
||||
/** @type {Boolean} */ this.bTerminalIsConst
|
||||
/** @type {Boolean} */ this.bTerminalIsWeakPointer
|
||||
/** @type {Boolean} */ this.bTerminalIsUObjectWrapper
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user