9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 18:49:06 +00:00

Check if shaped gen is flat

This commit is contained in:
cyberpwn
2021-08-17 14:21:43 -04:00
parent 0da229e8f4
commit e8e7e3144f

View File

@@ -64,4 +64,8 @@ public class IrisShapedGeneratorStyle {
public IrisShapedGeneratorStyle(NoiseStyle style) {
this.generator = new IrisGeneratorStyle(style);
}
public boolean isFlat() {
return min == max || getGenerator().isFlat();
}
}