well
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-08-02 00:16:57 +10:00
parent 2bb2c6ce17
commit 73610c52dd

View File

@ -8,7 +8,7 @@ const renderer = new THREE.WebGLRenderer();
renderer.setSize( window.innerWidth, window.innerHeight ); renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement ); document.body.appendChild( renderer.domElement );
const geometry = new THREE.BoxGeometry( 1, 1, 1 ); const geometry = new THREE.BoxGeometry( 1, 2, 1 );
const material = new THREE.MeshBasicMaterial( { color: 0x33ff00 } ); const material = new THREE.MeshBasicMaterial( { color: 0x33ff00 } );
const cube = new THREE.Mesh( geometry, material ); const cube = new THREE.Mesh( geometry, material );
scene.add( cube ); scene.add( cube );