2012-12-17 21:21:53 +01:00
|
|
|
package com.pahimar.ee3.lib;
|
2012-11-30 21:28:42 +01:00
|
|
|
|
2013-03-08 19:40:59 +01:00
|
|
|
/**
|
|
|
|
* Equivalent-Exchange-3
|
|
|
|
*
|
|
|
|
* Sprites
|
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
2013-03-15 03:14:02 +01:00
|
|
|
public class Textures {
|
2012-12-19 19:09:56 +01:00
|
|
|
|
2013-02-13 21:52:00 +01:00
|
|
|
// Base file pathes
|
2013-03-15 03:14:02 +01:00
|
|
|
public static final String ITEM_TEXTURE_LOCATION = "/mods/ee3/textures/items/";
|
2013-03-05 04:18:15 +01:00
|
|
|
public static final String MODEL_SHEET_LOCATION = "/mods/ee3/textures/models/";
|
|
|
|
public static final String ARMOR_SHEET_LOCATION = "/mods/ee3/textures/armor/";
|
|
|
|
public static final String GUI_SHEET_LOCATION = "/mods/ee3/textures/gui/";
|
2013-03-05 22:17:54 +01:00
|
|
|
public static final String EFFECTS_LOCATION = "/mods/ee3/textures/effects/";
|
2013-03-08 19:40:59 +01:00
|
|
|
|
2013-02-13 21:52:00 +01:00
|
|
|
// Item/Block sprite sheets
|
2013-03-15 03:14:02 +01:00
|
|
|
public static final String VANILLA_ITEM_TEXTURE_SHEET = "/gui/items.png";
|
|
|
|
public static final String VANILLA_BLOCK_TEXTURE_SHEET = "/terrain.png";
|
2013-03-05 22:17:54 +01:00
|
|
|
|
2013-02-13 21:52:00 +01:00
|
|
|
// Armor sprite sheets
|
2013-03-08 19:40:59 +01:00
|
|
|
|
2013-02-13 21:52:00 +01:00
|
|
|
// GUI textures
|
2013-02-18 03:30:11 +01:00
|
|
|
public static final String GUI_CALCINATOR = GUI_SHEET_LOCATION + "calcinator.png";
|
|
|
|
public static final String GUI_ALUDEL = GUI_SHEET_LOCATION + "aludel.png";
|
2013-02-19 02:13:24 +01:00
|
|
|
public static final String GUI_ALCHEMICAL_STORAGE = GUI_SHEET_LOCATION + "alchemicalStorage.png";
|
|
|
|
public static final String GUI_SHARED_ALCHEMICAL_STORAGE = GUI_SHEET_LOCATION + "sharedAlchemicalStorage.png";
|
2013-03-04 17:40:40 +01:00
|
|
|
public static final String GUI_PORTABLE_CRAFTING = "/gui/crafting.png";
|
|
|
|
public static final String GUI_PORTABLE_TRANSMUTATION = GUI_SHEET_LOCATION + "portableTransmutation.png";
|
2013-04-19 17:34:45 +02:00
|
|
|
public static final String GUI_GLASS_BELL = GUI_SHEET_LOCATION + "glassBell.png";
|
2013-03-08 19:40:59 +01:00
|
|
|
|
2013-02-13 21:52:00 +01:00
|
|
|
// Model textures
|
2013-02-18 03:30:11 +01:00
|
|
|
public static final String MODEL_CALCINATOR = MODEL_SHEET_LOCATION + "calcinator.png";
|
|
|
|
public static final String MODEL_ALUDEL = MODEL_SHEET_LOCATION + "aludel.png";
|
2013-02-19 02:13:24 +01:00
|
|
|
public static final String MODEL_ALCHEMICAL_CHEST = MODEL_SHEET_LOCATION + "alchemicalChest.png";
|
2013-04-19 17:34:45 +02:00
|
|
|
public static final String MODEL_GLASS_BELL = MODEL_SHEET_LOCATION + "aludel.png";
|
2013-03-08 19:40:59 +01:00
|
|
|
|
2013-03-05 22:17:54 +01:00
|
|
|
// Effect textures
|
|
|
|
public static final String EFFECT_WORLD_TRANSMUTATION = EFFECTS_LOCATION + "noise.png";
|
2013-03-08 19:40:59 +01:00
|
|
|
|
2012-11-30 21:28:42 +01:00
|
|
|
}
|