many major changes, see store for details
- bump version to v0.4.0 - add theme support - add high contrast and light themes - remove settingcommand (broken) - add icon variants for certain themes - remove text shadows from interfaces other than the hud
This commit is contained in:
parent
854ce7201c
commit
bd5573c48f
38 changed files with 223 additions and 184 deletions
13
src/main/java/me/kawaiizenbo/moonlight/util/DrawUtils.java
Normal file
13
src/main/java/me/kawaiizenbo/moonlight/util/DrawUtils.java
Normal file
|
@ -0,0 +1,13 @@
|
|||
package me.kawaiizenbo.moonlight.util;
|
||||
|
||||
import me.kawaiizenbo.moonlight.Moonlight;
|
||||
import net.minecraft.util.Identifier;
|
||||
|
||||
public class DrawUtils
|
||||
{
|
||||
public static Identifier getThemedGUIIcon(String textureName)
|
||||
{
|
||||
String addition = Moonlight.THEME.useDarkIcons ? "_light" : "";
|
||||
return Identifier.of("moonlight", textureName+addition);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue