13 lines
482 B
Java
13 lines
482 B
Java
|
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;
|
||
|
}
|