-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGTBMGuiTextures.java
More file actions
31 lines (25 loc) · 1.55 KB
/
GTBMGuiTextures.java
File metadata and controls
31 lines (25 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.github.gtexpert.gtbm.api.gui;
import net.minecraft.util.ResourceLocation;
import gregtech.api.gui.resources.TextureArea;
public class GTBMGuiTextures {
public static final TextureArea GTBM_LOGO = TextureArea
.fullImage("textures/gui/icon/gtbm_logo.png");
public static final TextureArea GTBM_LOGO_XMAS = TextureArea
.fullImage("textures/gui/icon/gtbm_logo_xmas.png");
public static final TextureArea GTBM_LOGO_DARK = TextureArea
.fullImage("textures/gui/icon/gtbm_logo_dark.png");
public static final TextureArea GTBM_LOGO_BLINKING_YELLOW = TextureArea
.fullImage("textures/gui/icon/gtbm_logo_blinking_yellow.png");
public static final TextureArea GTBM_LOGO_BLINKING_RED = TextureArea
.fullImage("textures/gui/icon/gtbm_logo_blinking_red.png");
// Bee status icon (from JEI)
public static final TextureArea BEE_INFO_ICON = new TextureArea(
new ResourceLocation("jei", "textures/gui/icons/info.png"), 0, 0, 1, 1);
// Bee slot overlays (directly from Gendustry's hint icons)
public static final TextureArea QUEEN_OVERLAY = new TextureArea(
new ResourceLocation("gendustry", "textures/items/hints/queen.png"), 0, 0, 1, 1);
public static final TextureArea DRONE_OVERLAY = new TextureArea(
new ResourceLocation("gendustry", "textures/items/hints/drone.png"), 0, 0, 1, 1);
public static final TextureArea UPGRADE_OVERLAY = new TextureArea(
new ResourceLocation("gendustry", "textures/items/hints/upgrade.png"), 0, 0, 1, 1);
}