From b300f9620c9eb7139b95d9aba4d519b3d068dcbd Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Tue, 21 Apr 2026 11:24:43 +0900 Subject: [PATCH] Update woodRingsPendantLight.ts --- .../frontend/src/world/room/objects/woodRingsPendantLight.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts b/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts index 296feb77d7..5016526c3e 100644 --- a/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts +++ b/packages/frontend/src/world/room/objects/woodRingsPendantLight.ts @@ -107,7 +107,7 @@ export const woodRingsPendantLight = defineObject({ const codeMesh = model.findMesh('__X_CODE__'); const applyLength = () => { - mainNode.position.y = -remap(options.length, 0, 1, 0, 200) / WORLD_SCALE; + mainNode.position.y = -remap(options.length, 0, 1, 0, cm(200)) / WORLD_SCALE; codeMesh.morphTargetManager!.getTargetByName('Length')!.influence = options.length; model.updated(); };