fix: missing button interactions

This commit is contained in:
2025-12-18 16:38:05 +01:00
parent 9827e7f929
commit c5f07e7b80
2 changed files with 9 additions and 0 deletions

View File

@@ -70,6 +70,14 @@ useScreenClick((x, y) => {
actionateButton(selectedButton.value);
}
});
useKeyDown((key) => {
switch (key) {
case "NDS_B":
store.animateOutro();
break;
}
});
</script>
<template>