From 501203407d8cd1eef3106c665b4f2ae7f738f61b Mon Sep 17 00:00:00 2001 From: hiroto Date: Sun, 18 Aug 2024 16:32:45 -0300 Subject: [PATCH 1/2] closes #119 --- .../jogos/enchente/controlador_arrasta/ControladorArrasta.gd | 3 ++- projeto/recursos/jogos/enchente/jogador/playerLane3D.gd | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/projeto/recursos/jogos/enchente/controlador_arrasta/ControladorArrasta.gd b/projeto/recursos/jogos/enchente/controlador_arrasta/ControladorArrasta.gd index 2389d4f..5bea8dc 100644 --- a/projeto/recursos/jogos/enchente/controlador_arrasta/ControladorArrasta.gd +++ b/projeto/recursos/jogos/enchente/controlador_arrasta/ControladorArrasta.gd @@ -9,7 +9,8 @@ export var distancia_do_centro: int = 10 export var angulos_arraste = { 'esquerda-0': {'minimo': 150, 'maximo': 190}, 'esquerda-1': {'minimo': -190, 'maximo': -150}, - 'direita': {'minimo': -30, 'maximo': 30} + 'direita': {'minimo': -30, 'maximo': 30}, + 'baixo': {'minimo': 50, 'maximo': 140} } diff --git a/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd b/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd index a413de9..8796a73 100644 --- a/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd +++ b/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd @@ -24,9 +24,11 @@ func _input(event): func _on_ControladorArrasta_arrastado(chave): if chave == 'direita': controle_faixa_3d.mover_direita() - print('a') elif chave == 'esquerda-0' or chave == 'esquerda-1': controle_faixa_3d.mover_esquerda() + elif chave == 'baixo': + print_debug('baixo') + controle_faixa_3d.abaixar() func _on_AreaDano_body_entered(body: Node) -> void: if body.is_in_group("terrestre") and not imune and not pulando: From 420f06f27ad219ba019146f382014dd605899ea9 Mon Sep 17 00:00:00 2001 From: hiroto Date: Sun, 18 Aug 2024 16:36:57 -0300 Subject: [PATCH 2/2] #119 --- projeto/recursos/jogos/enchente/jogador/playerLane3D.gd | 1 - 1 file changed, 1 deletion(-) diff --git a/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd b/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd index 8796a73..701122b 100644 --- a/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd +++ b/projeto/recursos/jogos/enchente/jogador/playerLane3D.gd @@ -27,7 +27,6 @@ func _on_ControladorArrasta_arrastado(chave): elif chave == 'esquerda-0' or chave == 'esquerda-1': controle_faixa_3d.mover_esquerda() elif chave == 'baixo': - print_debug('baixo') controle_faixa_3d.abaixar() func _on_AreaDano_body_entered(body: Node) -> void: