slight UI changes

This commit is contained in:
biglyderv 2025-03-11 06:29:48 -04:00
parent 8b2a7b38af
commit d15fd272ca
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
4 changed files with 12 additions and 9 deletions

View file

@ -113,8 +113,6 @@ function renderThing() {
gl.uniformMatrix4fv(matBuffer, false, new Float32Array(MDN.perspectiveMatrix(Math.PI * 100 / 180, ratio, 0.01, 1000)));
hud.textContent = `${numify(nothingness)} nil; ${numify((nGain + getBonus) * 60)} nil/sec`
gl.uniform1f(sizeBuffer, -Math.log(nothingness));
let am = (nGain + getBonus) / (nGain + getBonus + nothingness);
@ -154,7 +152,6 @@ function renderThing() {
requestAnimationFrame(renderThing);
}
let hud = document.querySelector('.main-hud');
main();
requestAnimationFrame(renderThing)