renamed debug log titles
This commit is contained in:
@@ -140,7 +140,7 @@ document.addEventListener("DOMContentLoaded", async function() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pauseAnimBtn(localStorage["isAnimating"] || "true")
|
pauseAnimBtn(localStorage["isAnimating"] || "true")
|
||||||
debugPrint("Pause button state", isAnimating)
|
debugPrint("isAnimating", isAnimating)
|
||||||
|
|
||||||
if (showLoading != "true") {
|
if (showLoading != "true") {
|
||||||
removeLoadingScreen()
|
removeLoadingScreen()
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ function addStars() {
|
|||||||
let randX = randomInt(0, 256)
|
let randX = randomInt(0, 256)
|
||||||
let randY = randomInt(0, 256)
|
let randY = randomInt(0, 256)
|
||||||
|
|
||||||
debugPrint("Star pos", `[x${randX}, y${randY}]`)
|
debugPrint("Star pos", `[x: ${randX}, y: ${randY}]`)
|
||||||
|
|
||||||
starNoise.style.top = `round(calc(${randX}px * var(--pxDensity)), var(--pxDensityPx))`
|
starNoise.style.top = `round(calc(${randX}px * var(--pxDensity)), var(--pxDensityPx))`
|
||||||
starNoise.style.left = `round(calc(${randY}px * var(--pxDensity)), var(--pxDensityPx))`
|
starNoise.style.left = `round(calc(${randY}px * var(--pxDensity)), var(--pxDensityPx))`
|
||||||
|
|||||||
Reference in New Issue
Block a user