From 14a3a4d1a7798721ea7c219be5e72733f3612456 Mon Sep 17 00:00:00 2001 From: Atsuihsio <842960157@qq.com> Date: Sat, 21 Dec 2024 01:12:51 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E5=A4=A7=E9=94=81=E5=AE=9A=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../superbwarfare/client/screens/JavelinHudOverlay.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/atsuishio/superbwarfare/client/screens/JavelinHudOverlay.java b/src/main/java/com/atsuishio/superbwarfare/client/screens/JavelinHudOverlay.java index a029a6dea..a55262ca4 100644 --- a/src/main/java/com/atsuishio/superbwarfare/client/screens/JavelinHudOverlay.java +++ b/src/main/java/com/atsuishio/superbwarfare/client/screens/JavelinHudOverlay.java @@ -91,7 +91,7 @@ public class JavelinHudOverlay { if (seekingEntity == null) return; - double zoom = 3; + double zoom = 3.6; Vec3 pos = new Vec3(seekingEntity.getX(), seekingEntity.getEyeY(), seekingEntity.getZ()); Vec3 lookAngle = player.getLookAngle().normalize().scale(pos.distanceTo(cameraPos) * (1 - 1.0 / zoom)); @@ -105,7 +105,7 @@ public class JavelinHudOverlay { int x = (int) p.x; int y = (int) p.y; - HudUtil.blit(poseStack, lockOn ? FRAME_LOCK : FRAME, x - 8, y - 8, 0, 0, 16, 16, 16, 16, 1f); + HudUtil.blit(poseStack, lockOn ? FRAME_LOCK : FRAME, x - 12, y - 12, 0, 0, 24, 24, 24, 24, 1f); poseStack.popPose(); } else { scopeScale = 1;