From 2042f1de53381cc265eb3b848580ebc95b406445 Mon Sep 17 00:00:00 2001 From: Talan Erickson <8935634+v01dMage@users.noreply.github.com> Date: Mon, 8 Apr 2024 22:46:57 -0400 Subject: [PATCH] tweak geo's --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f0480bd..0826168 100644 --- a/index.html +++ b/index.html @@ -53,11 +53,11 @@ ); scene.add( room ); - runner = new THREE.Mesh( new THREE.CapsuleGeometry( .1, .2, 10, 5).translate( 0, 0, -1), + runner = new THREE.Mesh( new THREE.CapsuleGeometry( .1, .2, 10, 5).translate( 0, 2.5, -1).rotateZ(3.14/2), new THREE.MeshBasicMaterial( {color: 0x330099} ) ); scene.add( runner ); - testLight = new THREE.Mesh( new THREE.BoxGeometry( 1, 1, 1 ).translate( 1, .1, -1 ), + testLight = new THREE.Mesh( new THREE.BoxGeometry( .1, .1, .1 ).translate( 1, 2.6, -1 ), new THREE.MeshBasicMaterial( {color: 0x777777} ) ); scene.add( testLight );