Merge pull request #5191 from ericrius1/gunFix

fixed bullet size to be smaller for gun.js script
This commit is contained in:
Philip Rosedale 2015-06-23 09:53:23 -07:00
commit 1930043329

View file

@ -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;