You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I define parallel nodes, tick._openNodes and lastOpenNodes have some problems
(my english is poor)
var start = 0;
var i;
for (i = 0; i < Math.min(lastOpenNodes.length, currOpenNodes.length); i++) {
start = i + 1;
if (lastOpenNodes[i] !== currOpenNodes[i]) {
break;
}
}
It's going to make the node that I opened this time will be closed.
Perhaps because of the parallel node I joined, the tree has multiple running branches, which makes the last time and current opennodes compare
When I define parallel nodes, tick._openNodes and lastOpenNodes have some problems
(my english is poor)
There are problems with this comparison
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: