LE CHANGEMENT DE TOUCHES REMARCHE ! LOUE SOIT LES SAINT PARAMETRES
This commit is contained in:
parent
ef0b911b9c
commit
713a03c6be
3 changed files with 17 additions and 12 deletions
|
@ -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:
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Add table
Reference in a new issue