diff --git a/menu_principal/menu_principal_affichage.gd b/menu_principal/menu_principal_affichage.gd index a53b924..627ed76 100644 --- a/menu_principal/menu_principal_affichage.gd +++ b/menu_principal/menu_principal_affichage.gd @@ -32,6 +32,7 @@ func _on_param_button_pressed(): func on_exit_parametres() -> void : menu_principal.visible = true menu_parametres.visible = false + menu_parametres.set_process(false) @@ -39,9 +40,7 @@ func _on_play_button_pressed(): get_tree().root.add_child(first_room) musique_fond.playing = false menu_principal.visible = false - -func _on_load_button_pressed(): - print("Charger une sauvegarde") + func _on_musique_fond_finished() -> void: diff --git a/parametres/assign_menu/assigner_bouton.gd b/parametres/assign_menu/assigner_bouton.gd index 99befae..dac3c20 100644 --- a/parametres/assign_menu/assigner_bouton.gd +++ b/parametres/assign_menu/assigner_bouton.gd @@ -5,7 +5,7 @@ extends Control @onready var button = $HBoxContainer/Button as Button @export var nom_action : String = "BOUGER_HAUT" -var nom_touche : String = OS.get_keycode_string(InputMap.action_get_events(nom_action)[0].physical_keycode) +@onready var nom_touche : String = OS.get_keycode_string(InputMap.action_get_events(nom_action)[0].physical_keycode) # Called when the node enters the scene tree for the first time. @@ -28,9 +28,9 @@ func set_texte_label() -> void : "BOUGER_BAS": label.text = "descendre" "BOUGER_DROITE": - label.text = "droite" + label.text = "aller à droite" "BOUGER_GAUCHE": - label.text = "gauche" + label.text = "aller à gauche" "PAUSE": label.text = "Pause" @@ -39,6 +39,7 @@ func set_texte_bouton() -> void: button.text = "%s" % nom_touche func definir_touche(touche)-> void: + var old = InputMap.action_get_events(nom_action)[0] var action_keycode=touche.physical_keycode @@ -46,11 +47,14 @@ func definir_touche(touche)-> void: InputMap.action_add_event(nom_action, touche) set_texte_bouton() + print(nom_action, "deviens ", nom_touche) for i in get_tree().get_nodes_in_group("changer_touches"): - if i.nom_action != self.nom_action : - if i.nom_touche==self.nom_touche : - i.definir_touche(old) + if i.nom_action != self.nom_action and i.nom_touche==self.nom_touche : + InputMap.action_erase_events(i.nom_action) + InputMap.action_add_event(i.nom_action, old) + i.set_texte_bouton() + print(i.nom_action, "deviens ", i.nom_touche, "car échange") func _on_button_pressed(): button.text = "Appuyez sur une touche..." @@ -63,5 +67,5 @@ func _unhandled_key_input(event): func _on_hidden(): - set_process_unhandled_key_input(true) + set_process_unhandled_key_input(false) set_texte_bouton() diff --git a/parametres/tab_parametres.tscn b/parametres/tab_parametres.tscn index e53df86..c8bf8c8 100644 --- a/parametres/tab_parametres.tscn +++ b/parametres/tab_parametres.tscn @@ -22,9 +22,11 @@ func _process(delta): func _on_commandes_tab_changed(tab): - if tab != 2 : - commandes.MarginContainer.ScrollContainer.VBoxContainer.assigner_bouton.set_process_unhandled_key_input(false) + commandes.MarginContainer.ScrollContainer.VBoxContainer.assigner_bouton6.set_process_unhandled_key_input(false) commandes.MarginContainer.ScrollContainer.VBoxContainer.assigner_bouton2.set_process_unhandled_key_input(false) + commandes.MarginContainer.ScrollContainer.VBoxContainer.assigner_bouton3.set_process_unhandled_key_input(false) + commandes.MarginContainer.ScrollContainer.VBoxContainer.assigner_bouton4.set_process_unhandled_key_input(false) + commandes.MarginContainer.ScrollContainer.VBoxContainer.assigner_bouton5.set_process_unhandled_key_input(false) " [node name="Tab_Parametres" type="Control"]