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
In 3-prepare_layers_for_upscale.py, around line 561 you have
maxLayerId = 0
for x in layers_generated:
if x[1] > minLayerId:
maxLayerId = x[1]
Shouldn't it be if x[1] > maxLayerId ? Like this, if minLayerId = 4 and x[1] is 6 then 5, you get maxLayerId = 5 (the last value that is greater than min, rather than the max value)
The text was updated successfully, but these errors were encountered:
In 3-prepare_layers_for_upscale.py, around line 561 you have
Shouldn't it be
if x[1] > maxLayerId
? Like this, if minLayerId = 4 and x[1] is 6 then 5, you get maxLayerId = 5 (the last value that is greater than min, rather than the max value)The text was updated successfully, but these errors were encountered: