From 1a53848fe68238fd3368ad6342adef0cc43f0386 Mon Sep 17 00:00:00 2001 From: JannisX11 Date: Thu, 27 Jul 2023 14:19:00 +0200 Subject: [PATCH] Improve bedrock first person preview accuracy --- js/display_mode.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/display_mode.js b/js/display_mode.js index f0e50e6e..9cb06f22 100644 --- a/js/display_mode.js +++ b/js/display_mode.js @@ -2143,11 +2143,11 @@ BARS.defineActions(function() { let player_skin_setup = false; function updateBase(mode) { if (mode == 'attachable_first') { - Project.model_3d.position.set(-23, 21, 0); + Project.model_3d.position.set(-20, 21, 0); Project.model_3d.rotation.set( - Math.degToRad(-86.6), - Math.degToRad(42), - Math.degToRad(124), + Math.degToRad(-95), + Math.degToRad(44), + Math.degToRad(115), 'ZYX' ); Interface.preview.append(center_first_person_button);