Final changes before 5.0.0

This commit is contained in:
Martin Prokoph
2024-09-07 00:56:11 +02:00
parent 2961637df0
commit d79dfc004b
5 changed files with 11 additions and 4 deletions

View File

@@ -4,6 +4,6 @@ Ever thought that the world behind your inventory was just too distracting?
Or that the default Minecraft blur effect is just too boring?
Then this mod is just right for you!
![Image showing the Minecraft inventory with a blur effect in the background](https://cdn.modrinth.com/data/NK39zBp2/images/d4fc980a14be51af7007af02949fda280be305ce.png)
![Image showing the Minecraft inventory with a blur effect in the background](https://cdn.modrinth.com/data/NK39zBp2/images/213f18fcf3d6c55cad164077d569e2f0339551da.webp)
Download now on [Modrinth](https://modrinth.com/mod/blur-fabric)
Download now on [Modrinth](https://modrinth.com/mod/blur-plus)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -3,12 +3,16 @@ package eu.midnightdust.blur.fabric;
import eu.midnightdust.blur.Blur;
import eu.midnightdust.blur.util.RainbowColor;
import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.api.ModInitializer;
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents;
public class BlurFabric implements ClientModInitializer {
public class BlurFabric implements ModInitializer, ClientModInitializer {
@Override
public void onInitialize() {
Blur.init();
}
@Override
public void onInitializeClient() {
Blur.init();
ClientTickEvents.END_CLIENT_TICK.register(client -> RainbowColor.tick());
}
}

View File

@@ -7,6 +7,9 @@
"license": "MIT",
"icon": "assets/blur/icon.png",
"entrypoints": {
"main": [
"eu.midnightdust.blur.fabric.BlurFabric"
],
"client": [
"eu.midnightdust.blur.fabric.BlurFabric"
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB