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

This commit is contained in:
Simple_Not 2023-08-02 00:33:46 +10:00
parent 9b928a8052
commit 5b58c7302a

View File

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