mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
Svg links implementation WIP
This commit is contained in:
@@ -43,15 +43,11 @@ export default class PinEntity extends Entity {
|
||||
}
|
||||
|
||||
isInput() {
|
||||
if (!this.bHidden && this.Direction !== "EGPD_Output") {
|
||||
return true
|
||||
}
|
||||
return !this.bHidden && this.Direction !== "EGPD_Output"
|
||||
}
|
||||
|
||||
isOutput() {
|
||||
if (!this.bHidden && this.Direction === "EGPD_Output") {
|
||||
return true
|
||||
}
|
||||
return !this.bHidden && this.Direction === "EGPD_Output"
|
||||
}
|
||||
|
||||
isConnected() {
|
||||
|
||||
Reference in New Issue
Block a user