diff --git a/app/components/Contact/BottomScreen/BottomScreen.vue b/app/components/Contact/BottomScreen/BottomScreen.vue index 4e99456..5a98914 100644 --- a/app/components/Contact/BottomScreen/BottomScreen.vue +++ b/app/components/Contact/BottomScreen/BottomScreen.vue @@ -70,6 +70,14 @@ useScreenClick((x, y) => { actionateButton(selectedButton.value); } }); + +useKeyDown((key) => { + switch (key) { + case "NDS_B": + store.animateOutro(); + break; + } +});