feat: require click on the loading screen, and make intro animation faster

This commit is contained in:
2026-02-24 12:07:14 +01:00
parent b8054c58e1
commit 1167242798
7 changed files with 36 additions and 14 deletions

View File

@@ -614,6 +614,10 @@ const handleTouchEnd = (event: TouchEvent) => {
onMounted(() => {
app.ready = true;
if (app.userHasInteracted) {
animateIntro();
}
if (renderer) {
renderer.instance.domElement.addEventListener("mousedown", handleMouseDown);
renderer.instance.domElement.addEventListener("click", handleClick);