Code/net/minecraft/client/renderer/entity/state/ParrotRenderState.java

13 lines
482 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.client.renderer.entity.state;
import net.minecraft.client.model.ParrotModel;
import net.minecraft.world.entity.animal.Parrot;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class ParrotRenderState extends LivingEntityRenderState {
public Parrot.Variant variant = Parrot.Variant.RED_BLUE;
public float flapAngle;
public ParrotModel.Pose pose = ParrotModel.Pose.FLYING;
}