1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2026-01-06 15:41:51 +00:00

Box primitives

This commit is contained in:
AJ Ferguson
2023-06-01 22:35:03 -05:00
committed by RednedEpic
parent 10dab367d4
commit 565ce3062e
133 changed files with 1159 additions and 868 deletions

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
import org.geysermc.pack.bedrock.resource.blocks.CarriedTextures;
import org.geysermc.pack.bedrock.resource.blocks.Isotropic;
@@ -16,7 +17,7 @@ public class Blocks {
public String formatVersion;
@SerializedName("brightness_gamma")
public float brightnessGamma;
public Float brightnessGamma;
@SerializedName("carried_textures")
public CarriedTextures carriedTextures;
@@ -50,7 +51,7 @@ public class Blocks {
*
* @return Brightness Gamma
*/
public float brightnessGamma() {
public Float brightnessGamma() {
return this.brightnessGamma;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.util.ArrayList;
import java.util.List;
import org.geysermc.pack.bedrock.resource.manifest.Capabilities;
@@ -17,7 +18,7 @@ import org.geysermc.pack.bedrock.resource.manifest.Subpacks;
*/
public class Manifest {
@SerializedName("format_version")
public float formatVersion;
public Float formatVersion;
public Capabilities capabilities;
@@ -36,7 +37,7 @@ public class Manifest {
*
* @return Format Version
*/
public float formatVersion() {
public Float formatVersion() {
return this.formatVersion;
}

View File

@@ -1,6 +1,8 @@
package org.geysermc.pack.bedrock.resource.animation_controllers.animationcontroller.animationcontrollers;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.String;
import java.util.ArrayList;
import java.util.HashMap;
@@ -17,10 +19,10 @@ import org.geysermc.pack.bedrock.resource.animation_controllers.animationcontrol
*/
public class States {
@SerializedName("blend_transition")
public float blendTransition;
public Float blendTransition;
@SerializedName("blend_via_shortest_path")
public boolean blendViaShortestPath;
public Boolean blendViaShortestPath;
@SerializedName("particle_effects")
public List<ParticleEffects> particleEffects = new ArrayList<>();
@@ -39,7 +41,7 @@ public class States {
/**
* A short-hand version of blend_out that simply sets the amount of time to fade out if the animation is interrupted.
*/
public float blendTransition() {
public Float blendTransition() {
return this.blendTransition;
}
@@ -55,7 +57,7 @@ public class States {
*
* @return Blend Via Shortest Path
*/
public boolean blendViaShortestPath() {
public Boolean blendViaShortestPath() {
return this.blendViaShortestPath;
}

View File

@@ -1,11 +1,12 @@
package org.geysermc.pack.bedrock.resource.animation_controllers.animationcontroller.animationcontrollers.states;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.String;
public class ParticleEffects {
@SerializedName("bind_to_actor")
public boolean bindToActor;
public Boolean bindToActor;
public String effect;
@@ -19,7 +20,7 @@ public class ParticleEffects {
*
* @return Bind To Actor
*/
public boolean bindToActor() {
public Boolean bindToActor() {
return this.bindToActor;
}

View File

@@ -1,6 +1,8 @@
package org.geysermc.pack.bedrock.resource.animations.actoranimation;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.String;
import java.util.HashMap;
import java.util.Map;
@@ -18,7 +20,7 @@ public class Animations {
public String animTimeUpdate;
@SerializedName("animation_length")
public float animationLength;
public Float animationLength;
@SerializedName("blend_weight")
public String blendWeight;
@@ -31,7 +33,7 @@ public class Animations {
public String loopDelay;
@SerializedName("override_previous_animation")
public boolean overridePreviousAnimation;
public Boolean overridePreviousAnimation;
@SerializedName("particle_effects")
private Map<String, ParticleEffects> particleEffects = new HashMap<>();
@@ -57,7 +59,7 @@ public class Animations {
*
* @return Animation Length
*/
public float animationLength() {
public Float animationLength() {
return this.animationLength;
}
@@ -117,7 +119,7 @@ public class Animations {
*
* @return Override Previous Animation
*/
public boolean overridePreviousAnimation() {
public Boolean overridePreviousAnimation() {
return this.overridePreviousAnimation;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.attachables.attachable;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.String;
import java.util.HashMap;
import java.util.Map;
@@ -17,7 +18,7 @@ public class Description {
public String[] animationControllers;
@SerializedName("enable_attachables")
public boolean enableAttachables;
public Boolean enableAttachables;
private Map<String, String> geometry = new HashMap<>();
@@ -88,7 +89,7 @@ public class Description {
/**
* @return Enable Attachables
*/
public boolean enableAttachables() {
public Boolean enableAttachables() {
return this.enableAttachables;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.attachables.attachable.description;
import com.google.gson.annotations.SerializedName;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,7 +17,7 @@ public class SpawnEgg {
public String texture;
@SerializedName("texture_index")
public int textureIndex;
public Integer textureIndex;
/**
* @return Base Colour
@@ -63,7 +64,7 @@ public class SpawnEgg {
/**
* @return Texture Index
*/
public int textureIndex() {
public Integer textureIndex() {
return this.textureIndex;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class BambooJungle {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class BambooJungle {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class BambooJungle {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class BambooJungle {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class BambooJungle {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class BambooJungleHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class BambooJungleHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class BambooJungleHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class BambooJungleHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class BambooJungleHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class BasaltDeltas {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class BasaltDeltas {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class BasaltDeltas {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class BasaltDeltas {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class BasaltDeltas {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Beach {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Beach {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Beach {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Beach {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Beach {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class BirchForest {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class BirchForest {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class BirchForest {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class BirchForest {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class BirchForest {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class BirchForestHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class BirchForestHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class BirchForestHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class BirchForestHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class BirchForestHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ColdBeach {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ColdBeach {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ColdBeach {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ColdBeach {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ColdBeach {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ColdOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ColdOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ColdOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ColdOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ColdOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ColdTaiga {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ColdTaiga {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ColdTaiga {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ColdTaiga {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ColdTaiga {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ColdTaigaHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ColdTaigaHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ColdTaigaHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ColdTaigaHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ColdTaigaHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ColdTaigaMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ColdTaigaMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ColdTaigaMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ColdTaigaMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ColdTaigaMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class CrimsonForest {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class CrimsonForest {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class CrimsonForest {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class CrimsonForest {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class CrimsonForest {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class DeepColdOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class DeepColdOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class DeepColdOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class DeepColdOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class DeepColdOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class DeepFrozenOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class DeepFrozenOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class DeepFrozenOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class DeepFrozenOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class DeepFrozenOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class DeepLukewarmOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class DeepLukewarmOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class DeepLukewarmOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class DeepLukewarmOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class DeepLukewarmOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class DeepOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class DeepOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class DeepOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class DeepOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class DeepOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class DeepWarmOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class DeepWarmOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class DeepWarmOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class DeepWarmOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class DeepWarmOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class DefaultValue {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class DefaultValue {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class DefaultValue {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class DefaultValue {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class DefaultValue {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Desert {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Desert {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Desert {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Desert {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Desert {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class DesertHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class DesertHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class DesertHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class DesertHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class DesertHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ExtremeHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ExtremeHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ExtremeHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ExtremeHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ExtremeHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ExtremeHillsEdge {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ExtremeHillsEdge {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ExtremeHillsEdge {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ExtremeHillsEdge {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ExtremeHillsEdge {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ExtremeHillsMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ExtremeHillsMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ExtremeHillsMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ExtremeHillsMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ExtremeHillsMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ExtremeHillsPlusTrees {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ExtremeHillsPlusTrees {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ExtremeHillsPlusTrees {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ExtremeHillsPlusTrees {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ExtremeHillsPlusTrees {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ExtremeHillsPlusTreesMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ExtremeHillsPlusTreesMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ExtremeHillsPlusTreesMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ExtremeHillsPlusTreesMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ExtremeHillsPlusTreesMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class FlowerForest {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class FlowerForest {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class FlowerForest {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class FlowerForest {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class FlowerForest {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Forest {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Forest {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Forest {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Forest {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Forest {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class ForestHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class ForestHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class ForestHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class ForestHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class ForestHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class FrozenOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class FrozenOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class FrozenOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class FrozenOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class FrozenOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class FrozenRiver {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class FrozenRiver {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class FrozenRiver {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class FrozenRiver {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class FrozenRiver {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Hell {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Hell {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Hell {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Hell {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Hell {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class IceMountains {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class IceMountains {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class IceMountains {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class IceMountains {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class IceMountains {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class IcePlains {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class IcePlains {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class IcePlains {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class IcePlains {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class IcePlains {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class IcePlainsSpikes {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class IcePlainsSpikes {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class IcePlainsSpikes {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class IcePlainsSpikes {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class IcePlainsSpikes {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Jungle {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Jungle {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Jungle {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Jungle {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Jungle {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class JungleEdge {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class JungleEdge {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class JungleEdge {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class JungleEdge {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class JungleEdge {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class JungleHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class JungleHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class JungleHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class JungleHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class JungleHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class JungleMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class JungleMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class JungleMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class JungleMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class JungleMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class LukewarmOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class LukewarmOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class LukewarmOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class LukewarmOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class LukewarmOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MangroveSwamp {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MangroveSwamp {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MangroveSwamp {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MangroveSwamp {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MangroveSwamp {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MegaSpruceTaiga {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MegaSpruceTaiga {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MegaSpruceTaiga {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MegaSpruceTaiga {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MegaSpruceTaiga {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MegaSpruceTaigaMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MegaSpruceTaigaMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MegaSpruceTaigaMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MegaSpruceTaigaMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MegaSpruceTaigaMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MegaTaiga {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MegaTaiga {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MegaTaiga {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MegaTaiga {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MegaTaiga {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MegaTaigaHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MegaTaigaHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MegaTaigaHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MegaTaigaHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MegaTaigaHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MegaTaigaMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MegaTaigaMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MegaTaigaMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MegaTaigaMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MegaTaigaMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Mesa {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Mesa {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Mesa {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Mesa {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Mesa {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MesaBryce {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MesaBryce {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MesaBryce {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MesaBryce {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MesaBryce {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MesaMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MesaMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MesaMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MesaMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MesaMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MesaPlateau {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MesaPlateau {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MesaPlateau {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MesaPlateau {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MesaPlateau {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MesaPlateauStone {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MesaPlateauStone {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MesaPlateauStone {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MesaPlateauStone {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MesaPlateauStone {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MushroomIsland {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MushroomIsland {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MushroomIsland {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MushroomIsland {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MushroomIsland {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class MushroomIslandShore {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class MushroomIslandShore {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class MushroomIslandShore {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class MushroomIslandShore {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class MushroomIslandShore {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Ocean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Ocean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Ocean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Ocean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Ocean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Plains {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Plains {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Plains {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Plains {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Plains {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class River {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class River {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class River {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class River {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class River {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class RoofedForest {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class RoofedForest {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class RoofedForest {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class RoofedForest {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class RoofedForest {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Savanna {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Savanna {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Savanna {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Savanna {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Savanna {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class SavannaMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class SavannaMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class SavannaMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class SavannaMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class SavannaMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class SavannaPlateau {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class SavannaPlateau {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class SavannaPlateau {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class SavannaPlateau {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class SavannaPlateau {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class SoulsandValley {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class SoulsandValley {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class SoulsandValley {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class SoulsandValley {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class SoulsandValley {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class StoneBeach {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class StoneBeach {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class StoneBeach {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class StoneBeach {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class StoneBeach {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class SunflowerPlains {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class SunflowerPlains {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class SunflowerPlains {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class SunflowerPlains {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class SunflowerPlains {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Swampland {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Swampland {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Swampland {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Swampland {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Swampland {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class SwamplandMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class SwamplandMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class SwamplandMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class SwamplandMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class SwamplandMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class Taiga {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class Taiga {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class Taiga {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class Taiga {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class Taiga {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class TaigaHills {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class TaigaHills {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class TaigaHills {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class TaigaHills {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class TaigaHills {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class TaigaMutated {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class TaigaMutated {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class TaigaMutated {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class TaigaMutated {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class TaigaMutated {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class TheEnd {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class TheEnd {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class TheEnd {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class TheEnd {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class TheEnd {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class WarmOcean {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class WarmOcean {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class WarmOcean {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class WarmOcean {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class WarmOcean {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,6 +1,9 @@
package org.geysermc.pack.bedrock.resource.biomesclient.biomes;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
import java.lang.Integer;
import java.lang.String;
/**
@@ -16,16 +19,16 @@ public class WarpedForest {
public String[] fogIdsToMerge;
@SerializedName("inherit_from_prior_fog")
public boolean inheritFromPriorFog;
public Boolean inheritFromPriorFog;
@SerializedName("remove_all_prior_fog")
public boolean removeAllPriorFog;
public Boolean removeAllPriorFog;
@SerializedName("water_fog_distance")
public int waterFogDistance;
public Integer waterFogDistance;
@SerializedName("water_surface_transparency")
public float waterSurfaceTransparency;
public Float waterSurfaceTransparency;
/**
* A minecraft fog identifier.
@@ -62,7 +65,7 @@ public class WarpedForest {
/**
* @return Inherit From Prior Fog
*/
public boolean inheritFromPriorFog() {
public Boolean inheritFromPriorFog() {
return this.inheritFromPriorFog;
}
@@ -76,7 +79,7 @@ public class WarpedForest {
/**
* @return Remove All Prior Fog
*/
public boolean removeAllPriorFog() {
public Boolean removeAllPriorFog() {
return this.removeAllPriorFog;
}
@@ -92,7 +95,7 @@ public class WarpedForest {
*
* @return Water Fog Distance
*/
public int waterFogDistance() {
public Integer waterFogDistance() {
return this.waterFogDistance;
}
@@ -110,7 +113,7 @@ public class WarpedForest {
*
* @return Water Surface Transparency
*/
public float waterSurfaceTransparency() {
public Float waterSurfaceTransparency() {
return this.waterSurfaceTransparency;
}

View File

@@ -1,21 +1,23 @@
package org.geysermc.pack.bedrock.resource.blocks;
import java.lang.Boolean;
public class Isotropic {
public boolean down;
public Boolean down;
public boolean up;
public Boolean up;
public boolean side;
public Boolean side;
public boolean south;
public Boolean south;
public boolean north;
public Boolean north;
public boolean west;
public Boolean west;
public boolean east;
public Boolean east;
public boolean down() {
public Boolean down() {
return this.down;
}
@@ -23,7 +25,7 @@ public class Isotropic {
this.down = down;
}
public boolean up() {
public Boolean up() {
return this.up;
}
@@ -31,7 +33,7 @@ public class Isotropic {
this.up = up;
}
public boolean side() {
public Boolean side() {
return this.side;
}
@@ -39,7 +41,7 @@ public class Isotropic {
this.side = side;
}
public boolean south() {
public Boolean south() {
return this.south;
}
@@ -47,7 +49,7 @@ public class Isotropic {
this.south = south;
}
public boolean north() {
public Boolean north() {
return this.north;
}
@@ -55,7 +57,7 @@ public class Isotropic {
this.north = north;
}
public boolean west() {
public Boolean west() {
return this.west;
}
@@ -63,7 +65,7 @@ public class Isotropic {
this.west = west;
}
public boolean east() {
public Boolean east() {
return this.east;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.entity.cliententity;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.String;
import java.util.HashMap;
import java.util.Map;
@@ -16,7 +17,7 @@ public class Description {
private Map<String, String> animations = new HashMap<>();
@SerializedName("enable_attachables")
public boolean enableAttachables;
public Boolean enableAttachables;
private Map<String, String> geometry = new HashMap<>();
@@ -24,10 +25,10 @@ public class Description {
public String queryableGeometry;
@SerializedName("hide_armor")
public boolean hideArmor;
public Boolean hideArmor;
@SerializedName("held_item_ignores_lighting")
public boolean heldItemIgnoresLighting;
public Boolean heldItemIgnoresLighting;
public String identifier;
@@ -78,7 +79,7 @@ public class Description {
*
* @return Enable Attachables
*/
public boolean enableAttachables() {
public Boolean enableAttachables() {
return this.enableAttachables;
}
@@ -128,7 +129,7 @@ public class Description {
*
* @return Hide Armor
*/
public boolean hideArmor() {
public Boolean hideArmor() {
return this.hideArmor;
}
@@ -146,7 +147,7 @@ public class Description {
*
* @return Held Item Ignores Lighting
*/
public boolean heldItemIgnoresLighting() {
public Boolean heldItemIgnoresLighting() {
return this.heldItemIgnoresLighting;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.entity.cliententity.description;
import com.google.gson.annotations.SerializedName;
import java.lang.Integer;
import java.lang.String;
/**
@@ -18,7 +19,7 @@ public class SpawnEgg {
public String texture;
@SerializedName("texture_index")
public int textureIndex;
public Integer textureIndex;
/**
* The basic color of the egg.
@@ -79,7 +80,7 @@ public class SpawnEgg {
*
* @return Texture Index
*/
public int textureIndex() {
public Integer textureIndex() {
return this.textureIndex;
}

View File

@@ -1,15 +1,16 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.air.TransitionFog;
public class Air {
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
@SerializedName("fog_color")
public String fogColor;
@@ -25,7 +26,7 @@ public class Air {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -43,7 +44,7 @@ public class Air {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,15 +1,16 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lava.TransitionFog;
public class Lava {
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
@SerializedName("fog_color")
public String fogColor;
@@ -25,7 +26,7 @@ public class Lava {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -43,7 +44,7 @@ public class Lava {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,15 +1,16 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lavaresistance.TransitionFog;
public class LavaResistance {
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
@SerializedName("fog_color")
public String fogColor;
@@ -25,7 +26,7 @@ public class LavaResistance {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -43,7 +44,7 @@ public class LavaResistance {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,15 +1,16 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.powdersnow.TransitionFog;
public class PowderSnow {
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
@SerializedName("fog_color")
public String fogColor;
@@ -25,7 +26,7 @@ public class PowderSnow {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -43,7 +44,7 @@ public class PowderSnow {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,15 +1,16 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.water.TransitionFog;
public class Water {
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
@SerializedName("fog_color")
public String fogColor;
@@ -25,7 +26,7 @@ public class Water {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -43,7 +44,7 @@ public class Water {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,15 +1,16 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.weather.TransitionFog;
public class Weather {
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
@SerializedName("fog_color")
public String fogColor;
@@ -25,7 +26,7 @@ public class Weather {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -43,7 +44,7 @@ public class Weather {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.air;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.air.transitionfog.InitFog;
/**
@@ -13,16 +14,16 @@ public class TransitionFog {
public InitFog initFog;
@SerializedName("min_percent")
public float minPercent;
public Float minPercent;
@SerializedName("mid_seconds")
public float midSeconds;
public Float midSeconds;
@SerializedName("mid_percent")
public float midPercent;
public Float midPercent;
@SerializedName("max_seconds")
public float maxSeconds;
public Float maxSeconds;
/**
* Initial fog that will slowly transition into water distance fog of the biome when player goes into water.
@@ -47,7 +48,7 @@ public class TransitionFog {
*
* @return Minimum Percent
*/
public float minPercent() {
public Float minPercent() {
return this.minPercent;
}
@@ -65,7 +66,7 @@ public class TransitionFog {
*
* @return Midpoint Seconds
*/
public float midSeconds() {
public Float midSeconds() {
return this.midSeconds;
}
@@ -83,7 +84,7 @@ public class TransitionFog {
*
* @return Midpoint Percent
*/
public float midPercent() {
public Float midPercent() {
return this.midPercent;
}
@@ -101,7 +102,7 @@ public class TransitionFog {
*
* @return Maximum Seconds
*/
public float maxSeconds() {
public Float maxSeconds() {
return this.maxSeconds;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.air.transitionfog;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
/**
@@ -13,10 +14,10 @@ public class InitFog {
public String fogColor;
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
/**
* The color that the fog will take on.
@@ -41,7 +42,7 @@ public class InitFog {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -59,7 +60,7 @@ public class InitFog {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lava;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lava.transitionfog.InitFog;
/**
@@ -13,16 +14,16 @@ public class TransitionFog {
public InitFog initFog;
@SerializedName("min_percent")
public float minPercent;
public Float minPercent;
@SerializedName("mid_seconds")
public float midSeconds;
public Float midSeconds;
@SerializedName("mid_percent")
public float midPercent;
public Float midPercent;
@SerializedName("max_seconds")
public float maxSeconds;
public Float maxSeconds;
/**
* Initial fog that will slowly transition into water distance fog of the biome when player goes into water.
@@ -47,7 +48,7 @@ public class TransitionFog {
*
* @return Minimum Percent
*/
public float minPercent() {
public Float minPercent() {
return this.minPercent;
}
@@ -65,7 +66,7 @@ public class TransitionFog {
*
* @return Midpoint Seconds
*/
public float midSeconds() {
public Float midSeconds() {
return this.midSeconds;
}
@@ -83,7 +84,7 @@ public class TransitionFog {
*
* @return Midpoint Percent
*/
public float midPercent() {
public Float midPercent() {
return this.midPercent;
}
@@ -101,7 +102,7 @@ public class TransitionFog {
*
* @return Maximum Seconds
*/
public float maxSeconds() {
public Float maxSeconds() {
return this.maxSeconds;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lava.transitionfog;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
/**
@@ -13,10 +14,10 @@ public class InitFog {
public String fogColor;
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
/**
* The color that the fog will take on.
@@ -41,7 +42,7 @@ public class InitFog {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -59,7 +60,7 @@ public class InitFog {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lavaresistance;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lavaresistance.transitionfog.InitFog;
/**
@@ -13,16 +14,16 @@ public class TransitionFog {
public InitFog initFog;
@SerializedName("min_percent")
public float minPercent;
public Float minPercent;
@SerializedName("mid_seconds")
public float midSeconds;
public Float midSeconds;
@SerializedName("mid_percent")
public float midPercent;
public Float midPercent;
@SerializedName("max_seconds")
public float maxSeconds;
public Float maxSeconds;
/**
* Initial fog that will slowly transition into water distance fog of the biome when player goes into water.
@@ -47,7 +48,7 @@ public class TransitionFog {
*
* @return Minimum Percent
*/
public float minPercent() {
public Float minPercent() {
return this.minPercent;
}
@@ -65,7 +66,7 @@ public class TransitionFog {
*
* @return Midpoint Seconds
*/
public float midSeconds() {
public Float midSeconds() {
return this.midSeconds;
}
@@ -83,7 +84,7 @@ public class TransitionFog {
*
* @return Midpoint Percent
*/
public float midPercent() {
public Float midPercent() {
return this.midPercent;
}
@@ -101,7 +102,7 @@ public class TransitionFog {
*
* @return Maximum Seconds
*/
public float maxSeconds() {
public Float maxSeconds() {
return this.maxSeconds;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.lavaresistance.transitionfog;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
/**
@@ -13,10 +14,10 @@ public class InitFog {
public String fogColor;
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
/**
* The color that the fog will take on.
@@ -41,7 +42,7 @@ public class InitFog {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -59,7 +60,7 @@ public class InitFog {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.powdersnow;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.powdersnow.transitionfog.InitFog;
/**
@@ -13,16 +14,16 @@ public class TransitionFog {
public InitFog initFog;
@SerializedName("min_percent")
public float minPercent;
public Float minPercent;
@SerializedName("mid_seconds")
public float midSeconds;
public Float midSeconds;
@SerializedName("mid_percent")
public float midPercent;
public Float midPercent;
@SerializedName("max_seconds")
public float maxSeconds;
public Float maxSeconds;
/**
* Initial fog that will slowly transition into water distance fog of the biome when player goes into water.
@@ -47,7 +48,7 @@ public class TransitionFog {
*
* @return Minimum Percent
*/
public float minPercent() {
public Float minPercent() {
return this.minPercent;
}
@@ -65,7 +66,7 @@ public class TransitionFog {
*
* @return Midpoint Seconds
*/
public float midSeconds() {
public Float midSeconds() {
return this.midSeconds;
}
@@ -83,7 +84,7 @@ public class TransitionFog {
*
* @return Midpoint Percent
*/
public float midPercent() {
public Float midPercent() {
return this.midPercent;
}
@@ -101,7 +102,7 @@ public class TransitionFog {
*
* @return Maximum Seconds
*/
public float maxSeconds() {
public Float maxSeconds() {
return this.maxSeconds;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.powdersnow.transitionfog;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
/**
@@ -13,10 +14,10 @@ public class InitFog {
public String fogColor;
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
/**
* The color that the fog will take on.
@@ -41,7 +42,7 @@ public class InitFog {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -59,7 +60,7 @@ public class InitFog {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.water;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.water.transitionfog.InitFog;
/**
@@ -13,16 +14,16 @@ public class TransitionFog {
public InitFog initFog;
@SerializedName("min_percent")
public float minPercent;
public Float minPercent;
@SerializedName("mid_seconds")
public float midSeconds;
public Float midSeconds;
@SerializedName("mid_percent")
public float midPercent;
public Float midPercent;
@SerializedName("max_seconds")
public float maxSeconds;
public Float maxSeconds;
/**
* Initial fog that will slowly transition into water distance fog of the biome when player goes into water.
@@ -47,7 +48,7 @@ public class TransitionFog {
*
* @return Minimum Percent
*/
public float minPercent() {
public Float minPercent() {
return this.minPercent;
}
@@ -65,7 +66,7 @@ public class TransitionFog {
*
* @return Midpoint Seconds
*/
public float midSeconds() {
public Float midSeconds() {
return this.midSeconds;
}
@@ -83,7 +84,7 @@ public class TransitionFog {
*
* @return Midpoint Percent
*/
public float midPercent() {
public Float midPercent() {
return this.midPercent;
}
@@ -101,7 +102,7 @@ public class TransitionFog {
*
* @return Maximum Seconds
*/
public float maxSeconds() {
public Float maxSeconds() {
return this.maxSeconds;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.water.transitionfog;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
/**
@@ -13,10 +14,10 @@ public class InitFog {
public String fogColor;
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
/**
* The color that the fog will take on.
@@ -41,7 +42,7 @@ public class InitFog {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -59,7 +60,7 @@ public class InitFog {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.weather;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.weather.transitionfog.InitFog;
/**
@@ -13,16 +14,16 @@ public class TransitionFog {
public InitFog initFog;
@SerializedName("min_percent")
public float minPercent;
public Float minPercent;
@SerializedName("mid_seconds")
public float midSeconds;
public Float midSeconds;
@SerializedName("mid_percent")
public float midPercent;
public Float midPercent;
@SerializedName("max_seconds")
public float maxSeconds;
public Float maxSeconds;
/**
* Initial fog that will slowly transition into water distance fog of the biome when player goes into water.
@@ -47,7 +48,7 @@ public class TransitionFog {
*
* @return Minimum Percent
*/
public float minPercent() {
public Float minPercent() {
return this.minPercent;
}
@@ -65,7 +66,7 @@ public class TransitionFog {
*
* @return Midpoint Seconds
*/
public float midSeconds() {
public Float midSeconds() {
return this.midSeconds;
}
@@ -83,7 +84,7 @@ public class TransitionFog {
*
* @return Midpoint Percent
*/
public float midPercent() {
public Float midPercent() {
return this.midPercent;
}
@@ -101,7 +102,7 @@ public class TransitionFog {
*
* @return Maximum Seconds
*/
public float maxSeconds() {
public Float maxSeconds() {
return this.maxSeconds;
}

View File

@@ -1,6 +1,7 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.distance.weather.transitionfog;
import com.google.gson.annotations.SerializedName;
import java.lang.Float;
import java.lang.String;
/**
@@ -13,10 +14,10 @@ public class InitFog {
public String fogColor;
@SerializedName("fog_start")
public float fogStart;
public Float fogStart;
@SerializedName("fog_end")
public float fogEnd;
public Float fogEnd;
/**
* The color that the fog will take on.
@@ -41,7 +42,7 @@ public class InitFog {
*
* @return Fog Start
*/
public float fogStart() {
public Float fogStart() {
return this.fogStart;
}
@@ -59,7 +60,7 @@ public class InitFog {
*
* @return Fog End
*/
public float fogEnd() {
public Float fogEnd() {
return this.fogEnd;
}

View File

@@ -1,25 +1,27 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.volumetric.density;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
public class Air {
@SerializedName("max_density")
public float maxDensity;
public Float maxDensity;
@SerializedName("max_density_height")
public float maxDensityHeight;
public Float maxDensityHeight;
@SerializedName("zero_density_height")
public float zeroDensityHeight;
public Float zeroDensityHeight;
public boolean uniform;
public Boolean uniform;
/**
* The maximum amount of opaqueness that the ground fog will take on. A value from [0.0, 1.0].
*
* @return Maximum Density
*/
public float maxDensity() {
public Float maxDensity() {
return this.maxDensity;
}
@@ -37,7 +39,7 @@ public class Air {
*
* @return Maximum Density Height
*/
public float maxDensityHeight() {
public Float maxDensityHeight() {
return this.maxDensityHeight;
}
@@ -55,7 +57,7 @@ public class Air {
*
* @return Zero Density Height
*/
public float zeroDensityHeight() {
public Float zeroDensityHeight() {
return this.zeroDensityHeight;
}
@@ -73,7 +75,7 @@ public class Air {
*
* @return Uniform
*/
public boolean uniform() {
public Boolean uniform() {
return this.uniform;
}

View File

@@ -1,25 +1,27 @@
package org.geysermc.pack.bedrock.resource.fog.fogsettings.volumetric.density;
import com.google.gson.annotations.SerializedName;
import java.lang.Boolean;
import java.lang.Float;
public class Lava {
@SerializedName("max_density")
public float maxDensity;
public Float maxDensity;
@SerializedName("max_density_height")
public float maxDensityHeight;
public Float maxDensityHeight;
@SerializedName("zero_density_height")
public float zeroDensityHeight;
public Float zeroDensityHeight;
public boolean uniform;
public Boolean uniform;
/**
* The maximum amount of opaqueness that the ground fog will take on. A value from [0.0, 1.0].
*
* @return Maximum Density
*/
public float maxDensity() {
public Float maxDensity() {
return this.maxDensity;
}
@@ -37,7 +39,7 @@ public class Lava {
*
* @return Maximum Density Height
*/
public float maxDensityHeight() {
public Float maxDensityHeight() {
return this.maxDensityHeight;
}
@@ -55,7 +57,7 @@ public class Lava {
*
* @return Zero Density Height
*/
public float zeroDensityHeight() {
public Float zeroDensityHeight() {
return this.zeroDensityHeight;
}
@@ -73,7 +75,7 @@ public class Lava {
*
* @return Uniform
*/
public boolean uniform() {
public Boolean uniform() {
return this.uniform;
}

Some files were not shown because too many files have changed in this diff Show More