diff --git a/src/components/three/ModelViewer.tsx b/src/components/three/ModelViewer.tsx index c7081d4..2d21646 100644 --- a/src/components/three/ModelViewer.tsx +++ b/src/components/three/ModelViewer.tsx @@ -118,19 +118,23 @@ function GLBModel({ url }: { url: string }) { const rotYRad = (fineTuning.rotY * Math.PI) / 180; const rotZRad = (fineTuning.rotZ * Math.PI) / 180; const s = fineTuning.scale ?? 1; + const scaleRatio = useModelStore((st) => st.scaleRatio); + const renderFactor = scaleRatio?.factor ?? 1; return ( - - + + + + ); }