Way being picky.
This commit is contained in:
parent
e3644f2d2b
commit
7e30b02d69
303 changed files with 622 additions and 311 deletions
|
@ -9,7 +9,8 @@ import net.minecraft.tileentity.TileEntity;
|
|||
import net.minecraft.util.ResourceLocation;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class RenderConduit extends TileEntitySpecialRenderer {
|
||||
public class RenderConduit extends TileEntitySpecialRenderer
|
||||
{
|
||||
private ModelConduit modelConduit = new ModelConduit();
|
||||
|
||||
@Override
|
||||
|
|
|
@ -15,13 +15,15 @@ import net.minecraft.util.ResourceLocation;
|
|||
import net.minecraftforge.common.ForgeDirection;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class RenderPedestal extends TileEntitySpecialRenderer {
|
||||
public class RenderPedestal extends TileEntitySpecialRenderer
|
||||
{
|
||||
private ModelPedestal modelPedestal = new ModelPedestal();
|
||||
private final RenderItem customRenderItem;
|
||||
|
||||
public RenderPedestal()
|
||||
{
|
||||
customRenderItem = new RenderItem() {
|
||||
customRenderItem = new RenderItem()
|
||||
{
|
||||
@Override
|
||||
public boolean shouldBob()
|
||||
{
|
||||
|
|
|
@ -15,13 +15,15 @@ import net.minecraft.util.ResourceLocation;
|
|||
import net.minecraftforge.common.ForgeDirection;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class RenderPlinth extends TileEntitySpecialRenderer {
|
||||
public class RenderPlinth extends TileEntitySpecialRenderer
|
||||
{
|
||||
private ModelPlinth modelPlinth = new ModelPlinth();
|
||||
private final RenderItem customRenderItem;
|
||||
|
||||
public RenderPlinth()
|
||||
{
|
||||
customRenderItem = new RenderItem() {
|
||||
customRenderItem = new RenderItem()
|
||||
{
|
||||
@Override
|
||||
public boolean shouldBob()
|
||||
{
|
||||
|
|
|
@ -15,7 +15,8 @@ import net.minecraft.util.ResourceLocation;
|
|||
import net.minecraftforge.common.ForgeDirection;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class RenderWritingTable extends TileEntitySpecialRenderer {
|
||||
public class RenderWritingTable extends TileEntitySpecialRenderer
|
||||
{
|
||||
private ModelWritingTable modelWritingTable = new ModelWritingTable();
|
||||
private final RenderItem customRenderItem;
|
||||
// private final RenderItem customRenderItem1;
|
||||
|
@ -26,7 +27,8 @@ public class RenderWritingTable extends TileEntitySpecialRenderer {
|
|||
|
||||
public RenderWritingTable()
|
||||
{
|
||||
customRenderItem = new RenderItem() {
|
||||
customRenderItem = new RenderItem()
|
||||
{
|
||||
@Override
|
||||
public boolean shouldBob()
|
||||
{
|
||||
|
|
|
@ -12,13 +12,15 @@ import net.minecraft.tileentity.TileEntity;
|
|||
import net.minecraftforge.common.ForgeDirection;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class TEAltarRenderer extends TileEntitySpecialRenderer {
|
||||
public class TEAltarRenderer extends TileEntitySpecialRenderer
|
||||
{
|
||||
private ModelBloodAltar modelBloodAltar = new ModelBloodAltar();
|
||||
private final RenderItem customRenderItem;
|
||||
|
||||
public TEAltarRenderer()
|
||||
{
|
||||
customRenderItem = new RenderItem() {
|
||||
customRenderItem = new RenderItem()
|
||||
{
|
||||
@Override
|
||||
public boolean shouldBob()
|
||||
{
|
||||
|
|
|
@ -7,7 +7,8 @@ import net.minecraft.util.ResourceLocation;
|
|||
import net.minecraftforge.client.IItemRenderer;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class TEAltarItemRenderer implements IItemRenderer {
|
||||
public class TEAltarItemRenderer implements IItemRenderer
|
||||
{
|
||||
private ModelBloodAltar modelBloodAltar;
|
||||
|
||||
public TEAltarItemRenderer()
|
||||
|
|
|
@ -8,7 +8,8 @@ import net.minecraft.util.ResourceLocation;
|
|||
import net.minecraftforge.client.IItemRenderer;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class TEWritingTableItemRenderer implements IItemRenderer {
|
||||
public class TEWritingTableItemRenderer implements IItemRenderer
|
||||
{
|
||||
private ModelWritingTable modelBloodAltar;
|
||||
|
||||
public TEWritingTableItemRenderer()
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderBileDemon extends RenderLiving {
|
||||
public class RenderBileDemon extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/BileDemon.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderBileDemon(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderBoulderFist extends RenderLiving {
|
||||
public class RenderBoulderFist extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/BoulderFist.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderBoulderFist(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -7,7 +7,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderElemental extends RenderLiving {
|
||||
public class RenderElemental extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation airBeacon = new ResourceLocation("alchemicalwizardry", "textures/models/AirFloatingBeacon.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
private static final ResourceLocation waterBeacon = new ResourceLocation("alchemicalwizardry", "textures/models/WaterFloatingBeacon.png");
|
||||
private static final ResourceLocation earthBeacon = new ResourceLocation("alchemicalwizardry", "textures/models/EarthFloatingBeacon.png");
|
||||
|
|
|
@ -9,7 +9,8 @@ import net.minecraft.entity.Entity;
|
|||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
public class RenderFallenAngel extends RenderLiving {
|
||||
public class RenderFallenAngel extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/WingedAngel.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderFallenAngel(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderIceDemon extends RenderLiving {
|
||||
public class RenderIceDemon extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/IceDemon.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderIceDemon(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderLowerGuardian extends RenderLiving {
|
||||
public class RenderLowerGuardian extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/LowerGuardian.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderLowerGuardian(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderShade extends RenderLiving {
|
||||
public class RenderShade extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/ShadeMob.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderShade(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderSmallEarthGolem extends RenderLiving {
|
||||
public class RenderSmallEarthGolem extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/SmallEarthGolem.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderSmallEarthGolem(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.client.renderer.entity.RenderLiving;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public class RenderWingedFireDemon extends RenderLiving {
|
||||
public class RenderWingedFireDemon extends RenderLiving
|
||||
{
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/WingedFireDemon.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
|
||||
public RenderWingedFireDemon(ModelBase par1ModelBase, float par2)
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.entity.Entity;
|
|||
import net.minecraft.util.MathHelper;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class ModelBileDemon extends ModelBase {
|
||||
public class ModelBileDemon extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer belly;
|
||||
ModelRenderer chest;
|
||||
|
|
|
@ -8,7 +8,8 @@ import net.minecraftforge.client.model.AdvancedModelLoader;
|
|||
import net.minecraftforge.client.model.IModelCustom;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class ModelBloodAltar extends ModelBase {
|
||||
public class ModelBloodAltar extends ModelBase
|
||||
{
|
||||
private IModelCustom modelBloodAltar;
|
||||
private IModelCustom modelBloodLevel; //TODO
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@ import net.minecraft.client.model.ModelRenderer;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.MathHelper;
|
||||
|
||||
public class ModelBoulderFist extends ModelBase {
|
||||
public class ModelBoulderFist extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer leftFist;
|
||||
ModelRenderer leftArm;
|
||||
|
|
|
@ -11,7 +11,8 @@ import net.minecraft.client.model.ModelRenderer;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraftforge.common.ForgeDirection;
|
||||
|
||||
public class ModelConduit extends ModelBase {
|
||||
public class ModelConduit extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer curvedInput;
|
||||
ModelRenderer curvedOutput;
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.entity.Entity;
|
|||
import net.minecraft.entity.monster.EntityBlaze;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public class ModelElemental extends ModelBase {
|
||||
public class ModelElemental extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer body;
|
||||
ModelRenderer Shape2;
|
||||
|
|
|
@ -4,7 +4,8 @@ import net.minecraft.client.model.ModelBase;
|
|||
import net.minecraft.client.model.ModelRenderer;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
||||
public class ModelEnergyBazookaMainProjectile extends ModelBase {
|
||||
public class ModelEnergyBazookaMainProjectile extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer thirdWarHead;
|
||||
ModelRenderer firstWarHead;
|
||||
|
|
|
@ -5,7 +5,8 @@ import net.minecraft.client.model.ModelRenderer;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.MathHelper;
|
||||
|
||||
public class ModelFallenAngel extends ModelBase {
|
||||
public class ModelFallenAngel extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer leftWing;
|
||||
ModelRenderer rightWing;
|
||||
|
|
|
@ -5,7 +5,8 @@ import net.minecraft.client.model.ModelRenderer;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.MathHelper;
|
||||
|
||||
public class ModelIceDemon extends ModelBase {
|
||||
public class ModelIceDemon extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer head;
|
||||
ModelRenderer leftHorn;
|
||||
|
|
|
@ -7,7 +7,8 @@ import net.minecraft.entity.Entity;
|
|||
import net.minecraft.entity.EntityLivingBase;
|
||||
import net.minecraft.util.MathHelper;
|
||||
|
||||
public class ModelLowerGuardian extends ModelBase {
|
||||
public class ModelLowerGuardian extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer Body;
|
||||
ModelRenderer Torso;
|
||||
|
|
|
@ -4,7 +4,8 @@ import net.minecraft.client.model.ModelBase;
|
|||
import net.minecraft.client.model.ModelRenderer;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
||||
public class ModelMeteor extends ModelBase {
|
||||
public class ModelMeteor extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer Shape1;
|
||||
ModelRenderer Shape2;
|
||||
|
|
|
@ -4,7 +4,8 @@ import net.minecraft.client.model.ModelBase;
|
|||
import net.minecraft.client.model.ModelRenderer;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
||||
public class ModelPedestal extends ModelBase {
|
||||
public class ModelPedestal extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer base;
|
||||
ModelRenderer top;
|
||||
|
|
|
@ -4,7 +4,8 @@ import net.minecraft.client.model.ModelBase;
|
|||
import net.minecraft.client.model.ModelRenderer;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
||||
public class ModelPlinth extends ModelBase {
|
||||
public class ModelPlinth extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer base;
|
||||
ModelRenderer table;
|
||||
|
|
|
@ -4,7 +4,8 @@ import net.minecraft.client.model.ModelBase;
|
|||
import net.minecraft.client.model.ModelRenderer;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
||||
public class ModelShade extends ModelBase {
|
||||
public class ModelShade extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer body;
|
||||
ModelRenderer tail1;
|
||||
|
|
|
@ -5,7 +5,8 @@ import net.minecraft.client.model.ModelRenderer;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.MathHelper;
|
||||
|
||||
public class ModelSmallEarthGolem extends ModelBase {
|
||||
public class ModelSmallEarthGolem extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer leftLeg;
|
||||
ModelRenderer rightLeg;
|
||||
|
|
|
@ -5,7 +5,8 @@ import net.minecraft.client.model.ModelRenderer;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.util.MathHelper;
|
||||
|
||||
public class ModelWingedFireDemon extends ModelBase {
|
||||
public class ModelWingedFireDemon extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer leftLegPlate;
|
||||
ModelRenderer leftLeg;
|
||||
|
|
|
@ -4,7 +4,8 @@ import net.minecraft.client.model.ModelBase;
|
|||
import net.minecraft.client.model.ModelRenderer;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
||||
public class ModelWritingTable extends ModelBase {
|
||||
public class ModelWritingTable extends ModelBase
|
||||
{
|
||||
//fields
|
||||
ModelRenderer base;
|
||||
ModelRenderer support;
|
||||
|
|
|
@ -8,7 +8,8 @@ import net.minecraft.util.ResourceLocation;
|
|||
import org.lwjgl.opengl.GL11;
|
||||
import org.lwjgl.opengl.GL12;
|
||||
|
||||
public class RenderEnergyBazookaMainProjectile extends Render {
|
||||
public class RenderEnergyBazookaMainProjectile extends Render
|
||||
{
|
||||
public ModelBase model = new ModelEnergyBazookaMainProjectile();
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/EnergyBazookaMainProjectile.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
private float scale = 1.0f;
|
||||
|
|
|
@ -11,7 +11,8 @@ import org.lwjgl.opengl.GL11;
|
|||
import org.lwjgl.opengl.GL12;
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
public class RenderEnergyBlastProjectile extends Render {
|
||||
public class RenderEnergyBlastProjectile extends Render
|
||||
{
|
||||
public void doRenderEnergyBlastProjectile(EnergyBlastProjectile entityShot, double par2, double par4, double par6, float par8, float par9)
|
||||
{
|
||||
GL11.glPushMatrix();
|
||||
|
|
|
@ -4,7 +4,8 @@ import cpw.mods.fml.relauncher.Side;
|
|||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
public class RenderFireProjectile {
|
||||
public class RenderFireProjectile
|
||||
{
|
||||
// public void doRenderProjectile(FireProjectile entityShot, double par2, double par4, double par6, float par8, float par9)
|
||||
// {
|
||||
// GL11.glPushMatrix();
|
||||
|
|
|
@ -8,7 +8,8 @@ import net.minecraft.util.ResourceLocation;
|
|||
import org.lwjgl.opengl.GL11;
|
||||
import org.lwjgl.opengl.GL12;
|
||||
|
||||
public class RenderMeteor extends Render {
|
||||
public class RenderMeteor extends Render
|
||||
{
|
||||
public ModelBase model = new ModelMeteor();
|
||||
private static final ResourceLocation field_110833_a = new ResourceLocation("alchemicalwizardry", "textures/models/Meteor.png"); //refers to:YourMod/modelsTextureFile/optionalFile/yourTexture.png
|
||||
private float scale = 1.0f;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue