Skip to content

Commit

Permalink
Adjust size slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
xpple committed Jan 10, 2025
1 parent 815ab4e commit 6924795
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ public static void renderWaypointBoxes(WorldRenderContext context) {

Vec3 cameraPosition = context.camera().getPosition();
float distance = (float) waypointLocation.distToCenterSqr(cameraPosition);
distance = (float) Math.sqrt(distance) / 4;
distance = (float) Math.sqrt(distance) / 6;

PoseStack stack = context.matrixStack();
stack.pushPose();
Expand Down

0 comments on commit 6924795

Please sign in to comment.