We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1690ffd + eda42dc commit 06bfaa0Copy full SHA for 06bfaa0
2 files changed
.gitignore
@@ -18,4 +18,5 @@ dist/*
18
**/*.pyc
19
20
#bun.lockb
21
-*.mjs
+*.mjs
22
+**/*\:Zone.Identifier
src/components/Logo3D.vue
@@ -59,7 +59,10 @@ 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
+ model.position.y = 0.2 // Move up 4px equivalent in 3D space
66
scene.add(model)
67
}, undefined, (error) => {
68
console.error('Error loading GLB model:', error)
0 commit comments