39 lines
1.4 KiB
Java
39 lines
1.4 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.client.model;
|
|
|
|
import net.minecraft.client.model.Model;
|
|
import net.minecraft.client.model.geom.ModelPart;
|
|
import net.minecraft.client.model.geom.PartPose;
|
|
import net.minecraft.client.model.geom.builders.CubeListBuilder;
|
|
import net.minecraft.client.model.geom.builders.LayerDefinition;
|
|
import net.minecraft.client.model.geom.builders.MeshDefinition;
|
|
import net.minecraft.client.model.geom.builders.PartDefinition;
|
|
import net.minecraft.client.renderer.rendertype.RenderTypes;
|
|
import net.minecraft.util.Mth;
|
|
|
|
public class BannerFlagModel
|
|
extends Model<Float> {
|
|
private final ModelPart flag;
|
|
|
|
public BannerFlagModel(ModelPart root) {
|
|
super(root, RenderTypes::entitySolid);
|
|
this.flag = root.getChild("flag");
|
|
}
|
|
|
|
public static LayerDefinition createFlagLayer(boolean standing) {
|
|
MeshDefinition mesh = new MeshDefinition();
|
|
PartDefinition root = mesh.getRoot();
|
|
root.addOrReplaceChild("flag", CubeListBuilder.create().texOffs(0, 0).addBox(-10.0f, 0.0f, -2.0f, 20.0f, 40.0f, 1.0f), PartPose.offset(0.0f, standing ? -44.0f : -20.5f, standing ? 0.0f : 10.5f));
|
|
return LayerDefinition.create(mesh, 64, 64);
|
|
}
|
|
|
|
@Override
|
|
public void setupAnim(Float phase) {
|
|
super.setupAnim(phase);
|
|
this.flag.xRot = (-0.0125f + 0.01f * Mth.cos((float)Math.PI * 2 * phase.floatValue())) * (float)Math.PI;
|
|
}
|
|
}
|
|
|