2013-08-23 16:59:50 +02:00
|
|
|
package com.pahimar.ee3.lib;
|
|
|
|
|
|
|
|
import net.minecraft.client.renderer.texture.TextureMap;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
|
|
|
|
import com.pahimar.ee3.core.util.ResourceLocationHelper;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Equivalent-Exchange-3
|
|
|
|
*
|
|
|
|
* Sprites
|
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class Textures {
|
|
|
|
|
|
|
|
// Base file paths
|
|
|
|
public static final String MODEL_SHEET_LOCATION = "textures/models/";
|
|
|
|
public static final String ARMOR_SHEET_LOCATION = "textures/armor/";
|
|
|
|
public static final String GUI_SHEET_LOCATION = "textures/gui/";
|
|
|
|
public static final String EFFECTS_LOCATION = "textures/effects/";
|
|
|
|
|
|
|
|
// Item/Block sprite sheets
|
|
|
|
public static final ResourceLocation VANILLA_BLOCK_TEXTURE_SHEET = TextureMap.field_110575_b;
|
|
|
|
public static final ResourceLocation VANILLA_ITEM_TEXTURE_SHEET = TextureMap.field_110576_c;
|
|
|
|
|
|
|
|
// Armor sprite sheets
|
|
|
|
|
|
|
|
// GUI textures
|
|
|
|
public static final ResourceLocation GUI_CALCINATOR = ResourceLocationHelper.getResourceLocation(GUI_SHEET_LOCATION + "calcinator.png");
|
|
|
|
public static final ResourceLocation GUI_ALUDEL = ResourceLocationHelper.getResourceLocation(GUI_SHEET_LOCATION + "aludel.png");
|
|
|
|
public static final ResourceLocation GUI_ALCHEMICAL_STORAGE = ResourceLocationHelper.getResourceLocation(GUI_SHEET_LOCATION + "alchemicalStorage.png");
|
|
|
|
public static final ResourceLocation GUI_SHARED_ALCHEMICAL_STORAGE = ResourceLocationHelper.getResourceLocation(GUI_SHEET_LOCATION + "sharedAlchemicalStorage.png");
|
2013-09-03 16:25:28 +02:00
|
|
|
public static final ResourceLocation GUI_PORTABLE_CRAFTING = new ResourceLocation("textures/gui/container/crafting_table.png");
|
2013-08-23 16:59:50 +02:00
|
|
|
public static final ResourceLocation GUI_PORTABLE_TRANSMUTATION = ResourceLocationHelper.getResourceLocation(GUI_SHEET_LOCATION + "portableTransmutation.png");
|
|
|
|
public static final ResourceLocation GUI_GLASS_BELL = ResourceLocationHelper.getResourceLocation(GUI_SHEET_LOCATION + "glassBell.png");
|
|
|
|
|
|
|
|
// Model textures
|
|
|
|
public static final ResourceLocation MODEL_CALCINATOR = ResourceLocationHelper.getResourceLocation(MODEL_SHEET_LOCATION + "calcinator.png");
|
|
|
|
public static final ResourceLocation MODEL_ALUDEL = ResourceLocationHelper.getResourceLocation(MODEL_SHEET_LOCATION + "aludel.png");
|
|
|
|
public static final ResourceLocation MODEL_ALCHEMICAL_CHEST = ResourceLocationHelper.getResourceLocation(MODEL_SHEET_LOCATION + "alchemicalChest.png");
|
|
|
|
public static final ResourceLocation MODEL_GLASS_BELL = ResourceLocationHelper.getResourceLocation(MODEL_SHEET_LOCATION + "aludel.png");
|
|
|
|
|
|
|
|
// Effect textures
|
|
|
|
public static final ResourceLocation EFFECT_WORLD_TRANSMUTATION = ResourceLocationHelper.getResourceLocation(EFFECTS_LOCATION + "noise.png");
|
|
|
|
|
|
|
|
}
|