Svg links implementation WIP

This commit is contained in:
barsdeveloper
2022-01-23 15:41:56 +01:00
parent e90277826d
commit e4ff5efc80
8 changed files with 43 additions and 24 deletions

View File

@@ -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() {