Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.15.2-forge' into 1.16.5-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
cam72cam committed Sep 13, 2023
2 parents 1d30bc0 + 4fbe6da commit e16434c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/cam72cam/mod/render/EntityRenderer.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ public void render(T stock, float entityYaw, float partialTicks, MatrixStack p_2
state.rotate(self.getRotationPitch(), 1, 0, 0);
state.rotate(-90, 0, 1, 0);

renderers.get(self.getClass()).render(self, state, partialTicks);
// State may be modified in render, before calling in to post-render
renderers.get(self.getClass()).render(self, state.clone(), partialTicks);
// TODO
renderers.get(self.getClass()).postRender(self, state, partialTicks);

Expand Down

0 comments on commit e16434c

Please sign in to comment.