As a beginner in Three.JS, I have been honing my skills in creating scenes and models. Recently, I imported a washing machine model into my scene and positioned it accordingly. Now, I am trying to scale it up to make it larger, but I am unsure of how to do so.
My current code snippet:
var objectLoader = new THREE.ObjectLoader();
objectLoader.load("models/machinethreejs/machine.json", function ( wm ) {
scene.add( wm );
wm.translateZ(275);
wm.translateX(150);
wm.translateY(55);
} );