doll dimensions scale

This commit is contained in:
James B. Pollack 2016-03-28 17:24:39 -07:00
parent faf56f92ec
commit 6534f5b6c1

View file

@ -318,6 +318,14 @@
y: 0.8382,
z: 0.1303
}];
var TRANSFORMER_SCALE = 0.5;
dollDimensions.forEach(function(vector,index){
var scaled = Vec3.multiply(vector,TRANSFORMER_SCALE);
dollDimensions[index] = scaled;
})
var dollLateralSeparation = 1.0;
dolls.forEach(function(doll, index) {