Change distribution count to be the maximum diameter of distribution

Instead of the minimum. So previously a value of 2 would make it spread the error over 2 walls for an even number, or 3 for an odd. Now it makes it spread the error over 2 walls for an even number or 1 for an odd. This means that the minimum allowed value becomes 2, because for an even wall count it needs to place the error somewhere.

Done as a 5 minute fix.
This commit is contained in:
Ghostkeeper 2021-11-12 16:48:08 +01:00
parent a94415b388
commit cbe3cf778a
No known key found for this signature in database
GPG Key ID: D2A8871EE34EC59A

View File

@ -1146,8 +1146,8 @@
"label": "Wall Distribution Count",
"description": "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width.",
"type": "int",
"default_value": 2,
"minimum_value": "1",
"default_value": 3,
"minimum_value": "2",
"enabled": "beading_strategy_type == 'inward_distributed'"
},
"wall_transition_angle":