mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-28 03:24:43 +08:00
Paste event handling WIP
This commit is contained in:
@@ -24,4 +24,12 @@ export default class ObjectEntity extends Entity {
|
||||
getAttributes() {
|
||||
return ObjectEntity.attributes
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @returns {String} The name of the node
|
||||
*/
|
||||
getNodeDisplayName() {
|
||||
return this.Name
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,6 +41,14 @@ export default class PinEntity extends Entity {
|
||||
return PinEntity.attributes
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @returns {String}
|
||||
*/
|
||||
getPinDisplayName() {
|
||||
return this.PinName
|
||||
}
|
||||
|
||||
isOutput() {
|
||||
if (this.Direction === "EGPD_Output") {
|
||||
return true
|
||||
|
||||
Reference in New Issue
Block a user