Skip to content

Commit 37e5789

Browse files
committed
VisualOverhaul 4.1.0 - 1.18.2, colored lilypads and improvements
Fix #29 Fix #27 Fix #26 Fix #25 Fix #24
1 parent 01f894a commit 37e5789

File tree

73 files changed

+94
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+94
-21
lines changed

gradle.properties

+6-7
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ org.gradle.jvmargs=-Xmx2G
33

44
# Fabric Properties
55
# check these on https://fabricmc.net/use
6-
minecraft_version=1.18.1
7-
yarn_mappings=1.18.1+build.5
8-
loader_version=0.12.12
6+
minecraft_version=1.18.2
7+
yarn_mappings=1.18.2+build.2
8+
loader_version=0.13.3
99

1010
# Mod Properties
11-
mod_version = 4.0.0
11+
mod_version = 4.1.0
1212
maven_group = eu.midnightdust
1313
archives_base_name = visualoverhaul
1414

1515
# Dependencies
1616
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
17-
fabric_version=0.44.0+1.18
18-
mod_menu_version = 2.0.0-beta.5
19-
midnightlib_version=0.3.1
17+
fabric_version=0.47.10+1.18.2
18+
midnightlib_version=0.4.0

src/main/java/eu/midnightdust/visualoverhaul/VisualOverhaulClient.java

+12-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@
3434
import net.minecraft.util.collection.DefaultedList;
3535
import net.minecraft.util.math.BlockPos;
3636
import net.minecraft.util.registry.Registry;
37-
import net.minecraft.world.biome.BuiltinBiomes;
38-
39-
import java.util.logging.LogManager;
4037

4138
import static eu.midnightdust.visualoverhaul.VisualOverhaul.*;
4239

@@ -128,6 +125,7 @@ public void onInitializeClient() {
128125
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("visualoverhaul","nobrewingbottles"), modContainer, ResourcePackActivationType.DEFAULT_ENABLED);
129126
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("visualoverhaul","fancyfurnace"), modContainer, ResourcePackActivationType.DEFAULT_ENABLED);
130127
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("visualoverhaul","coloredwaterbucket"), modContainer, ResourcePackActivationType.DEFAULT_ENABLED);
128+
ResourceManagerHelper.registerBuiltinResourcePack(new Identifier("visualoverhaul","rounddiscs"), modContainer, ResourcePackActivationType.ALWAYS_ENABLED);
131129
});
132130

133131

@@ -148,6 +146,11 @@ public void onInitializeClient() {
148146
grassColor = -8934609;
149147
}
150148
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> tintIndex == 0 ? -1 : waterColor, Items.WATER_BUCKET);
149+
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> tintIndex == 0 ? -1 : waterColor, Items.AXOLOTL_BUCKET);
150+
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> tintIndex == 0 ? -1 : waterColor, Items.COD_BUCKET);
151+
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> tintIndex == 0 ? -1 : waterColor, Items.PUFFERFISH_BUCKET);
152+
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> tintIndex == 0 ? -1 : waterColor, Items.TROPICAL_FISH_BUCKET);
153+
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> tintIndex == 0 ? -1 : waterColor, Items.SALMON_BUCKET);
151154
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> grassColor, Items.GRASS_BLOCK);
152155
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> grassColor, Items.GRASS);
153156
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> grassColor, Items.TALL_GRASS);
@@ -157,6 +160,9 @@ public void onInitializeClient() {
157160
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> foliageColor, Items.DARK_OAK_LEAVES);
158161
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> foliageColor, Items.JUNGLE_LEAVES);
159162
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> foliageColor, Items.OAK_LEAVES);
163+
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> foliageColor, Items.VINE);
164+
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> foliageColor, Items.SUGAR_CANE);
165+
if (VOConfig.coloredLilypad) ColorProviderRegistry.ITEM.register((stack, tintIndex) -> foliageColor, Items.LILY_PAD);
160166
ColorProviderRegistry.ITEM.register((stack, tintIndex) -> {
161167
if ((PotionUtil.getPotion(stack) == Potions.WATER || PotionUtil.getPotion(stack) == Potions.MUNDANE || PotionUtil.getPotion(stack) == Potions.THICK || PotionUtil.getPotion(stack) == Potions.AWKWARD) && tintIndex == 0) {
162168
return waterColor;
@@ -177,5 +183,8 @@ public void onInitializeClient() {
177183
}, Items.LINGERING_POTION);
178184
});
179185
}
186+
if (VOConfig.coloredLilypad) {
187+
ColorProviderRegistry.BLOCK.register((state, world, pos, tintIndex) -> world != null ? world.getColor(pos, BiomeColors.FOLIAGE_COLOR) : 0, Blocks.LILY_PAD);
188+
}
180189
}
181190
}

src/main/java/eu/midnightdust/visualoverhaul/block/renderer/FurnaceBlockEntityRenderer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public void render(E blockEntity, float tickDelta, MatrixStack matrices, VertexC
5454

5555
matrices.pop();
5656
}
57-
if (!item2.isEmpty() && !ItemTags.LOGS_THAT_BURN.contains(item2.getItem()) && !ItemTags.PLANKS.contains(item2.getItem())) {
57+
if (!item2.isEmpty() && !item2.isIn(ItemTags.LOGS_THAT_BURN) && !item2.isIn(ItemTags.PLANKS)) {
5858
matrices.push();
5959

6060
matrices.translate(0.5f, 0.08f, 0.5f);

src/main/java/eu/midnightdust/visualoverhaul/config/VOConfig.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
import eu.midnightdust.lib.config.MidnightConfig;
44

55
public class VOConfig extends MidnightConfig {
6-
@Entry public static boolean brewingstand = true;
7-
@Entry public static boolean jukebox = true;
8-
@Entry public static boolean jukebox_fake_block = true;
9-
@Entry public static boolean furnace = true;
10-
@Entry public static boolean smoker_particles = true;
11-
@Entry public static boolean blast_furnace_particles = true;
12-
@Entry public static boolean coloredItems = true;
13-
@Entry public static boolean potionEnchantmentGlint = true;
6+
@Client @Entry public static boolean brewingstand = true;
7+
@Client @Entry public static boolean jukebox = true;
8+
@Client @Entry public static boolean jukebox_fake_block = true;
9+
@Client @Entry public static boolean furnace = true;
10+
@Client @Entry public static boolean smoker_particles = true;
11+
@Client @Entry public static boolean blast_furnace_particles = true;
12+
@Client @Entry public static boolean coloredItems = true;
13+
@Client @Entry public static boolean coloredLilypad = true;
14+
@Client @Entry public static boolean potionEnchantmentGlint = true;
1415
}

src/main/resources/assets/visualoverhaul/lang/en_us.json

+2
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
"visualoverhaul.midnightconfig.blast_furnace_particles":"Blast Furnace Particles",
99
"visualoverhaul.midnightconfig.coloredItems":"Biome-based item colors",
1010
"visualoverhaul.midnightconfig.coloredItems.tooltip":"§cNeeds restart!",
11+
"visualoverhaul.midnightconfig.coloredLilypad":"Biome-based Lily Pad color",
12+
"visualoverhaul.midnightconfig.coloredLilypad.tooltip":"§cNeeds restart!",
1113
"visualoverhaul.midnightconfig.potionEnchantmentGlint":"Potion enchantment glint"
1214
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer1": "item/axolotl_bucket_overlay",
5+
"layer0": "item/axolotl_bucket"
6+
}
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer1": "item/fish_bucket_overlay",
5+
"layer0": "item/cod_bucket"
6+
}
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer1": "item/pufferfish_bucket_overlay",
5+
"layer0": "item/pufferfish_bucket"
6+
}
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer1": "item/fish_bucket_overlay",
5+
"layer0": "item/salmon_bucket"
6+
}
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer1": "item/fish_bucket_overlay",
5+
"layer0": "item/tropical_fish_bucket"
6+
}
7+
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pack": {
33
"pack_format": 8,
4-
"description": "Makes the water bucket also change it's color based on biome color"
4+
"description": "§2Makes the water bucket respect biome colors"
55
}
66
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pack": {
33
"pack_format": 8,
4-
"description": "§2Removes the bottles from the brewing stand texture"
4+
"description": "§2Removes the bottles from the brewing stand"
55
}
66
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"parent": "minecraft:item/generated",
3+
"textures": {
4+
"layer0": "minecraft:item/music_disc_otherside"
5+
},
6+
7+
"overrides": [
8+
{
9+
"predicate": {
10+
"round": 1
11+
},
12+
"model": "minecraft:item/music_disc_otherside_round"
13+
}
14+
]
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "visualoverhaul:item/round_disc",
3+
"textures": {
4+
"0": "minecraft:item/music_disc_otherside"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"pack": {
3+
"pack_format": 8,
4+
"description": "§2Makes the spinning discs on Jukeboxes round"
5+
}
6+
}

0 commit comments

Comments
 (0)