I have been trying to add this gltf model ( https://poly.google.com/view/28RBIWE8jzc ) using threeJS’. The code below is the only way that I have been able to see anything and I only see a small part of the object. If anyone knows what needs to be changed I would appreciate some help.
JavaScript
x
68
68
1
import * as THREE from 'three';
2
import {GLTFLoader} from 'three/examples/jsm/loaders/GLTFLoader.js';
3
import OrbitControls from 'three/examples/jsm/controls/OrbitControls.js'
4
import { Color } from 'three';
5
6
7
8
9
var camera, scene, renderer;
10
11
init();
12
animate();
13
14
function init() {
15
16
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 0.01, 10 );
17
camera.position.set(0,10,20);
18
19
scene = new THREE.Scene();
20
21
// Instantiate a loader
22
var loader = new GLTFLoader();
23
24
// Load a glTF resource
25
loader.load( 'styles/baseball/Baseball.gltf', function ( gltf ) {
26
scene.add( gltf.scene );
27
} );
28
29
scene.background = new Color('blue')
30
31
var light = new THREE.AmbientLight(0x404040);
32
scene.add(light);
33
34
const light2 = new THREE.PointLight( 0xff0000, 1, 100 );
35
light2.position.set( 50, 50, 50 );
36
scene.add( light2 );
37
38
renderer = new THREE.WebGLRenderer( { antialias: true } );
39
renderer.setSize( window.innerWidth, window.innerHeight );
40
document.body.appendChild( renderer.domElement );
41
document.body.addEventListener( 'keydown', onKeyDown, false );
42
43
}
44
45
function animate() {
46
requestAnimationFrame( animate );
47
renderer.render( scene, camera );
48
49
}
50
51
function onKeyDown(){
52
console.log("press")
53
switch( event.keyCode ) {
54
case 83: // w
55
camera.position.z += 5;
56
break;
57
case 87: // s
58
camera.position.z -= 5;
59
break;
60
case 40: // down
61
camera.position.y -= 5;
62
break;
63
case 38: // up
64
camera.position.y += 5;
65
break;
66
}
67
}
68
Advertisement
Answer
The baseball asset is quite large so I suggest you change your camera configuration. Try it with:
JavaScript
1
3
1
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 0.1, 1000 );
2
camera.position.set( 0, 150, 350 );
3
Alternatively, you could also consider to scale down the baseball after the loading process. Try it with:
JavaScript
1
2
1
gltf.scene.scale.setScalar( 0.01 );
2