Update hiddenEntityReset.js

add 0 before numbers
This commit is contained in:
James B. Pollack 2015-12-01 11:19:15 -08:00
parent 880aed0e6b
commit 0e4aaaceeb

View file

@ -170,8 +170,8 @@
collisionSoundURL: "https://s3.amazonaws.com/hifi-public/sounds/Guns/Gun_Drop_and_Metalli_1.wav", collisionSoundURL: "https://s3.amazonaws.com/hifi-public/sounds/Guns/Gun_Drop_and_Metalli_1.wav",
dimensions: { dimensions: {
x: 0.05, x: 0.05,
y: .23, y: 0.23,
z: .36 z: 0.36
}, },
script: gunScriptURL, script: gunScriptURL,
color: { color: {
@ -1381,4 +1381,4 @@
}; };
// entity scripts always need to return a newly constructed object of our type // entity scripts always need to return a newly constructed object of our type
return new ResetSwitch(); return new ResetSwitch();
}); });