diff --git a/.gitignore b/.gitignore index b46861d..fec4e1c 100644 --- a/.gitignore +++ b/.gitignore @@ -18,4 +18,5 @@ dist/* **/*.pyc #bun.lockb -*.mjs \ No newline at end of file +*.mjs +**/*\:Zone.Identifier diff --git a/src/components/Logo3D.vue b/src/components/Logo3D.vue index 672a951..4921683 100644 --- a/src/components/Logo3D.vue +++ b/src/components/Logo3D.vue @@ -59,7 +59,10 @@ const initThreeJS = () => { const loader = new GLTFLoader() loader.load('/2ae0aaee-e2de-45f0-aee2-9f7da77f7c18.glb', (gltf) => { model = gltf.scene - model.scale.setScalar(5.5) // Scale set to 5.5 + // sample.glb Scale is 5.5 + // 2ae0aaee-e2de-45f0-aee2-9f7da77f7c18.glb should be + model.scale.setScalar(4.5) + model.position.y = 0.2 // Move up 4px equivalent in 3D space scene.add(model) }, undefined, (error) => { console.error('Error loading GLB model:', error)