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

This commit is contained in:
Simple_Not 2023-08-02 00:15:18 +10:00
parent 42164ce017
commit 7fae53983e

View File

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