We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d571b66 commit c4281d3Copy full SHA for c4281d3
src/components/Logo3D.vue
@@ -59,7 +59,9 @@ const initThreeJS = () => {
59
const loader = new GLTFLoader()
60
loader.load('/2ae0aaee-e2de-45f0-aee2-9f7da77f7c18.glb', (gltf) => {
61
model = gltf.scene
62
- model.scale.setScalar(5.5) // Scale set to 5.5
+ // sample.glb Scale is 5.5
63
+ // 2ae0aaee-e2de-45f0-aee2-9f7da77f7c18.glb should be
64
+ model.scale.setScalar(4.5)
65
scene.add(model)
66
}, undefined, (error) => {
67
console.error('Error loading GLB model:', error)
0 commit comments