From 4e35d25ed0d989076e1a83d424d25fbf21c25426 Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Tue, 29 Oct 2024 04:13:25 -0500 Subject: [PATCH] Attempt bandage fix for nametag clipping issues. --- applications/nametags/nametags.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/nametags/nametags.js b/applications/nametags/nametags.js index cdc5550..d1b190b 100644 --- a/applications/nametags/nametags.js +++ b/applications/nametags/nametags.js @@ -112,7 +112,7 @@ let textSize = Entities.textSize(user_nametags[user_uuid].text, display_name); Entities.editEntity(user_nametags[user_uuid].text, { dimensions: { x: textSize.width + 0.25, y: textSize.height + 0.07, z: 0.1 } }); Entities.editEntity(user_nametags[user_uuid].background, { - dimensions: { x: Math.max(textSize.width + 0.25, 0.6), y: textSize.height+0.05, z: 0.1 }, + dimensions: { x: Math.max(textSize.width + 0.25, 0.6), y: textSize.height + 0.05, z: 0.1 }, }); }, 100); } @@ -139,7 +139,7 @@ const headJointIndex = user.getJointIndex("Head"); const jointInObjectFrame = user.getAbsoluteJointTranslationInObjectFrame(headJointIndex); Entities.editEntity(user_nametags[user_uuid].text, { - position: Vec3.sum(user.position, { x: 0, y: jointInObjectFrame.y + Math.abs(user.scale - 1) + 0.4, z: 0 }), + position: Vec3.sum(user.position, { x: 0.01, y: jointInObjectFrame.y + Math.abs(user.scale - 1) + 0.4, z: 0 }), text: display_name, }); });