From cf579ab275b192683b1c449b592686738e6bbf58 Mon Sep 17 00:00:00 2001 From: ericrius1 Date: Tue, 23 Jun 2015 09:52:29 -0700 Subject: [PATCH] fixed bullet size to be smaller --- examples/controllers/hydra/gun.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/controllers/hydra/gun.js b/examples/controllers/hydra/gun.js index 7d024e2fd3..26eee029af 100644 --- a/examples/controllers/hydra/gun.js +++ b/examples/controllers/hydra/gun.js @@ -181,7 +181,7 @@ function entityCollisionWithEntity(entity1, entity2, collision) { } function shootBullet(position, velocity, grenade) { - var BULLET_SIZE = 0.10; + var BULLET_SIZE = .09; var BULLET_LIFETIME = 10.0; var BULLET_GRAVITY = -0.25; var GRENADE_VELOCITY = 15.0;