Why does this default stone generator not work? #12
Answered
by
null2264
DemonSlayer112
asked this question in
Q&A
-
Im confused as why this doesnt work:
|
Beta Was this translation helpful? Give feedback.
Answered by
null2264
Mar 21, 2023
Replies: 1 comment 7 replies
-
Can you elaborate on what doesn't work? Answer: After investigating further, the problem is actually maxY and minY value is flipped, maxY value should be in minY and vice versa. A better more straight forward range config is planned. Currently proposed range config design: {
"range": "[-64, -1)" // This would mean -64 up to (but not including) -1
"range": "[-64, -1]" // This would mean -64 up to (including) -1
"range": "(-64, -1)" // This would mean -63 up to (but not including) -1
} |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
null2264
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you elaborate on what doesn't work?
Answer: After investigating further, the problem is actually maxY and minY value is flipped, maxY value should be in minY and vice versa. A better more straight forward range config is planned.
Currently proposed range config design: