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

14 lines
588 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.world.entity.AnimationState;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class CreakingRenderState extends LivingEntityRenderState {
public final AnimationState invulnerabilityAnimationState = new AnimationState();
public final AnimationState attackAnimationState = new AnimationState();
public final AnimationState deathAnimationState = new AnimationState();
public boolean eyesGlowing;
public boolean canMove;
}