Skip to content

Commit

Permalink
adjust geometries
Browse files Browse the repository at this point in the history
  • Loading branch information
v01dMage authored Apr 8, 2024
1 parent 809f0c7 commit ad6cbc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@
);
scene.add( room );

runner = new THREE.Mesh( new THREE.CapsuleGeometry( 1, 2, 10, 5).translate( 0, 2.75, 2),
runner = new THREE.Mesh( new THREE.CapsuleGeometry( .1, .2, 10, 5).translate( 0, 0, -1),
new THREE.MeshBasicMaterial( {color: 0x330099} ) );
scene.add( runner );

testLight = new THREE.Mesh( new THREE.BoxGeometry( 1, 1, 1 ).translate( 2, 3, 2 ),
testLight = new THREE.Mesh( new THREE.BoxGeometry( 1, 1, 1 ).translate( 1, .1, -1 ),
new THREE.MeshBasicMaterial( {color: 0x777777} ) );
scene.add( testLight );

Expand Down

0 comments on commit ad6cbc2

Please sign in to comment.