From d6fc2026917d55fa12713e3d00004ec461cc5971 Mon Sep 17 00:00:00 2001 From: Matheus Date: Thu, 30 Oct 2025 17:31:00 -0300 Subject: vĂ¡rios andares MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/InputHandling/MainGameInputHandler.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'scripts/InputHandling') diff --git a/scripts/InputHandling/MainGameInputHandler.cs b/scripts/InputHandling/MainGameInputHandler.cs index bbfb9ca..a18bd73 100644 --- a/scripts/InputHandling/MainGameInputHandler.cs +++ b/scripts/InputHandling/MainGameInputHandler.cs @@ -63,6 +63,11 @@ public partial class MainGameInputHandler : BaseInputHandler action = new EscapeAction(player); } + if (Input.IsActionJustPressed("descend")) + { + action = new TakeStairsAction(player); + } + return action; } } -- cgit v1.2.3