Skip to content

Instantly share code, notes, and snippets.

@QuantumBlink1337
Created June 19, 2022 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QuantumBlink1337/34135f755bbb58144bebd3d0e9a2f0ec to your computer and use it in GitHub Desktop.
Save QuantumBlink1337/34135f755bbb58144bebd3d0e9a2f0ec to your computer and use it in GitHub Desktop.
public class PossessedRenderer extends ZombieRenderer {
public PossessedRenderer(EntityRendererProvider.Context provider) {
super(provider);
}
public ResourceLocation getTextureLocation(@NotNull Zombie entity) {
return new ResourceLocation(BaseMod.MODID, "textures/entity/possessed.png");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment