1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 01:06:01 +08:00

Merge e1abe6d48917851802c65bce7c03005ba39e1bc7 into 82f78879316817dc5c7f8703352f5660a22ec3d4

This commit is contained in:
StellarWolfEntertainment 2023-08-22 08:11:00 +02:00 committed by GitHub
commit 56e9368163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -381,9 +381,9 @@ namespace XNode {
// Add connections to target port
for (int i = 0; i < connectionCount; i++) {
PortConnection connection = targetPort.connections[i];
PortConnection connection = connections[i];
NodePort otherPort = connection.Port;
Connect(otherPort);
targetPort.Connect(otherPort);
}
ClearConnections();
}