Skip to content

Commit

Permalink
Fix node port export (#15044)
Browse files Browse the repository at this point in the history
  • Loading branch information
deltakosh committed Apr 29, 2024
1 parent 022b057 commit 4c73d1e
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -409,6 +409,13 @@ export class NodeGeometryConnectionPoint {
serializationObject.inputName = this.name;
serializationObject.targetBlockId = this.connectedPoint.ownerBlock.uniqueId;
serializationObject.targetConnectionName = this.connectedPoint.name;
serializationObject.isExposedOnFrame = true;
serializationObject.exposedPortPosition = this.exposedPortPosition;
}

if (this.isExposedOnFrame || this.exposedPortPosition >= 0) {
serializationObject.isExposedOnFrame = true;
serializationObject.exposedPortPosition = this.exposedPortPosition;
}

return serializationObject;
Expand Down

0 comments on commit 4c73d1e

Please sign in to comment.