Removed old rendering system
Removed old rendering system. Some parts may be left over, but they won't affect testing. 1.10-R todo tag marks things to do with rendering.
This commit is contained in:
@@ -30,7 +30,6 @@ import net.minecraftforge.fml.relauncher.Side;
|
||||
import net.minecraftforge.fml.relauncher.SideOnly;
|
||||
|
||||
import appeng.api.util.AEPartLocation;
|
||||
import appeng.client.texture.ExtraBlockTextures;
|
||||
|
||||
|
||||
@SideOnly( Side.CLIENT )
|
||||
@@ -52,6 +51,7 @@ public class CraftingFx extends ParticleBreaking
|
||||
this.particleRed = 1;
|
||||
this.particleAlpha = 1.3f;
|
||||
this.particleScale = 1.5f;
|
||||
//TODO 1.10-R - Find exact atlas it was holding and replace this broken code with the atlas.
|
||||
this.particleTextureIndex = ExtraBlockTextures.BlockEnergyParticle.getIcon().getAtlas();
|
||||
this.particleMaxAge /= 1.2;
|
||||
|
||||
|
||||
@@ -30,7 +30,6 @@ import net.minecraftforge.fml.relauncher.Side;
|
||||
import net.minecraftforge.fml.relauncher.SideOnly;
|
||||
|
||||
import appeng.api.util.AEPartLocation;
|
||||
import appeng.client.texture.ExtraBlockTextures;
|
||||
|
||||
|
||||
@SideOnly( Side.CLIENT )
|
||||
@@ -52,6 +51,7 @@ public class EnergyFx extends ParticleBreaking
|
||||
this.particleRed = 255;
|
||||
this.particleAlpha = 1.4f;
|
||||
this.particleScale = 3.5f;
|
||||
//TODO 1.10-R - Find exact atlas it was holding and replace this broken code with the atlas.
|
||||
this.particleTextureIndex = ExtraBlockTextures.BlockEnergyParticle.getIcon().getAtlas();
|
||||
|
||||
this.startBlkX = MathHelper.floor_double( this.posX );
|
||||
|
||||
@@ -27,7 +27,6 @@ import net.minecraft.item.Item;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
import appeng.api.util.AEPartLocation;
|
||||
import appeng.client.texture.ExtraBlockTextures;
|
||||
|
||||
|
||||
public class MatterCannonFX extends ParticleBreaking
|
||||
@@ -47,6 +46,7 @@ public class MatterCannonFX extends ParticleBreaking
|
||||
this.motionX = 0.0f;
|
||||
this.motionY = 0.0f;
|
||||
this.motionZ = 0.0f;
|
||||
//TODO 1.10-R - Find exact atlas it was holding and replace this broken code with the atlas.
|
||||
this.particleTextureIndex = ExtraBlockTextures.BlockMatterCannonParticle.getIcon().getAtlas();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user