Skip to content

Commit

Permalink
docs: fix javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 committed Dec 21, 2024
1 parent 9341280 commit c6750e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import net.minecraft.client.gui.screens.Screen;
import net.minecraft.client.renderer.entity.EntityRenderer;
import net.minecraft.client.renderer.entity.player.PlayerRenderer;
import net.minecraft.client.renderer.entity.state.EntityRenderState;
import net.minecraft.client.renderer.entity.state.LivingEntityRenderState;
import net.minecraft.world.entity.Entity;

Expand Down Expand Up @@ -67,7 +68,7 @@ public static void onRenderPlayer(PlayerRenderer renderer, CancellableCallback c
}

/**
* @see WorldPreviewHooks#shouldHideEntity(Entity)
* @see WorldPreviewHooks#shouldHideEntity(EntityRenderer, EntityRenderState, float)
* @see WorldPreviewHooks#adjustShadow(EntityRenderer, boolean)
*/
public static void onRenderEntity(LivingEntityRenderState renderState, EntityRenderer<?, ?> renderer, float partialTick, CancellableCallback callback) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static void onRenderPlayer(RenderPlayerEvent.Pre event) {
}

/**
* @see WorldPreviewHooks#shouldHideEntity(Entity)
* @see WorldPreviewHooks#shouldHideEntity(EntityRenderer, EntityRenderState, float)
* @see WorldPreviewHooks#adjustShadow(EntityRenderer, boolean)
*/
@SubscribeEvent
Expand Down

0 comments on commit c6750e2

Please sign in to comment.