From 028b816e5bf4b3ed6c190bcd6b27a23735cd5708 Mon Sep 17 00:00:00 2001 From: Philip Rosedale Date: Mon, 3 Mar 2014 22:17:55 -0800 Subject: [PATCH] smaller damage --- examples/gun.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/gun.js b/examples/gun.js index 17587e3810..b50a8f64d8 100644 --- a/examples/gun.js +++ b/examples/gun.js @@ -57,12 +57,12 @@ function shootBullet(position, velocity) { damping: 0 }); // Play firing sounds - audioOptions.position = position; + audioOptions.position = position; Audio.playSound(fireSound, audioOptions); } function particleCollisionWithVoxel(particle, voxel) { - var HOLE_SIZE = 0.25; + var HOLE_SIZE = 0.125; var particleProperties = Particles.getParticleProperties(particle); var position = particleProperties.position; Particles.deleteParticle(particle);