fixed missing brace

This commit is contained in:
ericrius1 2015-11-30 18:29:20 -08:00
parent b67c481726
commit 880aed0e6b
2 changed files with 8 additions and 4 deletions

View file

@ -262,7 +262,6 @@
}
>>>>>>> master
function createFire() {

View file

@ -121,8 +121,8 @@ MasterReset = function() {
z: 503.91
});
createBow();
createBow();
}
function deleteAllToys() {
@ -137,6 +137,7 @@ MasterReset = function() {
});
}
function createGun(position) {
var modelURL = "https://s3.amazonaws.com/hifi-public/eric/models/gun.fbx";
@ -157,7 +158,11 @@ MasterReset = function() {
blue: 20
},
shapeType: 'box',
gravity: {x: 0, y: -5.0, z: 0},
gravity: {
x: 0,
y: -5.0,
z: 0
},
restitution: 0,
collisionsWillMove: true,
collisionSoundURL: "https://s3.amazonaws.com/hifi-public/sounds/Guns/Gun_Drop_and_Metalli_1.wav",
@ -178,6 +183,7 @@ MasterReset = function() {
}
})
});
}
function createBow() {
@ -232,7 +238,6 @@ MasterReset = function() {
}
})
});
}
function createFire() {