mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-30 12:29:20 +00:00
No Caching
This commit is contained in:
@@ -14,8 +14,8 @@ import lombok.Data;
|
||||
@Data
|
||||
public class IrisObjectTranslate
|
||||
{
|
||||
@MinNumber(-8)
|
||||
@MaxNumber(8)
|
||||
@MinNumber(-128)
|
||||
@MaxNumber(128)
|
||||
@DontObfuscate
|
||||
@Desc("The x shift in blocks")
|
||||
private int x = 0;
|
||||
@@ -27,8 +27,8 @@ public class IrisObjectTranslate
|
||||
@Desc("The x shift in blocks")
|
||||
private int y = 0;
|
||||
|
||||
@MinNumber(-8)
|
||||
@MaxNumber(8)
|
||||
@MinNumber(-128)
|
||||
@MaxNumber(128)
|
||||
@DontObfuscate
|
||||
@Desc("The x shift in blocks")
|
||||
private int z = 0;
|
||||
|
||||
@@ -391,6 +391,10 @@ public enum NoiseStyle {
|
||||
@Desc("Vascular noise gets higher as the position nears a cell border.")
|
||||
@DontObfuscate
|
||||
VASCULAR(rng -> new CNG(rng, NoiseType.VASCULAR, 1D, 1)),
|
||||
|
||||
@Desc("It always returns 0.5")
|
||||
@DontObfuscate
|
||||
FLAT(rng -> new CNG(rng, NoiseType.FLAT, 1D, 1)),
|
||||
|
||||
@Desc("Vascular noise gets higher as the position nears a cell border. Cells are distorted using Iris styled wispy noise.")
|
||||
@DontObfuscate
|
||||
|
||||
Reference in New Issue
Block a user