diff --git a/map/Kimatu-App/shooter.js b/map/Kimatu-App/shooter.js index ebb3c6b..92181b5 100644 --- a/map/Kimatu-App/shooter.js +++ b/map/Kimatu-App/shooter.js @@ -64,7 +64,7 @@ } }); - let count = 30; + let count = 20; const infoBox = document.createElement('div'); infoBox.style.position = 'absolute'; infoBox.style.top = '10px'; @@ -158,7 +158,7 @@ if (keys.space && time - lastShot > 250) { const bullet = new THREE.Mesh( new THREE.BoxGeometry(5, 5, 1), - new THREE.MeshBasicMaterial({ color: 0xffff00 }) + new THREE.MeshBasicMaterial({ color: 0x00ff00 }) ); bullet.position.set(player.position.x + 20, player.position.y, 0); bullets.push(bullet);