fix in the other places oto
This commit is contained in:
parent
a0dcfdc2c9
commit
6cca7d939f
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ setInterval(function () {
|
||||||
|
|
||||||
for (let ab in cubePos) {
|
for (let ab in cubePos) {
|
||||||
let a = cubePos[ab];
|
let a = cubePos[ab];
|
||||||
let bonus = 1 + counts.doNothing / (ab + 2);
|
let bonus = 1 + counts.doNothing / (ab * 1 + 2);
|
||||||
bonus = (bonus) ** 0.05;
|
bonus = (bonus) ** 0.05;
|
||||||
|
|
||||||
let f = (nGain + getBonus * bonus * 10000 + 10) / (nothingness + 10);
|
let f = (nGain + getBonus * bonus * 10000 + 10) / (nothingness + 10);
|
||||||
|
|
|
@ -139,7 +139,7 @@ function renderThing() {
|
||||||
let cubie = cubePos[ii];
|
let cubie = cubePos[ii];
|
||||||
let vp = MDN.rotateYMatrix(Math.log(nothingness + 1) * cubie[2] / 10);
|
let vp = MDN.rotateYMatrix(Math.log(nothingness + 1) * cubie[2] / 10);
|
||||||
|
|
||||||
let bonus = 1 + counts.doNothing / (ii + 2);
|
let bonus = 1 + counts.doNothing / (ii * 1+ 2);
|
||||||
bonus = bonus ** (1 / 2);
|
bonus = bonus ** (1 / 2);
|
||||||
|
|
||||||
vp = MDN.multiplyMatrices(MDN.scaleMatrix(sizes * bonus, sizes * bonus, sizes * bonus), vp)
|
vp = MDN.multiplyMatrices(MDN.scaleMatrix(sizes * bonus, sizes * bonus, sizes * bonus), vp)
|
||||||
|
|
Loading…
Reference in a new issue