resent-1.8/src/main/java/net/minecraft/client/model/ModelBanner.java

48 lines
1.7 KiB
Java
Raw Normal View History

2022-12-27 10:59:46 -08:00
package net.minecraft.client.model;
/**+
* This portion of EaglercraftX contains deobfuscated Minecraft 1.8 source code.
2023-01-14 07:56:36 -08:00
*
2022-12-27 10:59:46 -08:00
* Minecraft 1.8.8 bytecode is (c) 2015 Mojang AB. "Do not distribute!"
* Mod Coder Pack v9.18 deobfuscation configs are (c) Copyright by the MCP Team
2023-01-14 07:56:36 -08:00
*
2023-01-11 20:06:59 -08:00
* EaglercraftX 1.8 patch files are (c) 2022-2023 LAX1DUDE. All Rights Reserved.
2023-01-14 07:56:36 -08:00
*
2022-12-27 10:59:46 -08:00
* WITH THE EXCEPTION OF PATCH FILES, MINIFIED JAVASCRIPT, AND ALL FILES
* NORMALLY FOUND IN AN UNMODIFIED MINECRAFT RESOURCE PACK, YOU ARE NOT ALLOWED
* TO SHARE, DISTRIBUTE, OR REPURPOSE ANY FILE USED BY OR PRODUCED BY THE
* SOFTWARE IN THIS REPOSITORY WITHOUT PRIOR PERMISSION FROM THE PROJECT AUTHOR.
2023-01-14 07:56:36 -08:00
*
2022-12-27 10:59:46 -08:00
* NOT FOR COMMERCIAL OR MALICIOUS USE
2023-01-14 07:56:36 -08:00
*
* (please read the 'LICENSE' file this repo's root directory for more info)
*
2022-12-27 10:59:46 -08:00
*/
public class ModelBanner extends ModelBase {
2023-01-14 07:56:36 -08:00
public ModelRenderer bannerSlate;
public ModelRenderer bannerStand;
public ModelRenderer bannerTop;
2022-12-27 10:59:46 -08:00
2023-01-14 07:56:36 -08:00
public ModelBanner() {
this.textureWidth = 64;
this.textureHeight = 64;
this.bannerSlate = new ModelRenderer(this, 0, 0);
this.bannerSlate.addBox(-10.0F, 0.0F, -2.0F, 20, 40, 1, 0.0F);
this.bannerStand = new ModelRenderer(this, 44, 0);
this.bannerStand.addBox(-1.0F, -30.0F, -1.0F, 2, 42, 2, 0.0F);
this.bannerTop = new ModelRenderer(this, 0, 42);
this.bannerTop.addBox(-10.0F, -32.0F, -1.0F, 20, 2, 2, 0.0F);
}
/**+
* Renders the banner model in.
*/
public void renderBanner() {
this.bannerSlate.rotationPointY = -32.0F;
this.bannerSlate.render(0.0625F);
this.bannerStand.render(0.0625F);
this.bannerTop.render(0.0625F);
}
}