func: Added endstep trump value differences

This commit is contained in:
2026-04-03 13:31:09 +02:00
parent 4a05d2f4bd
commit 1958e1defd
4 changed files with 113 additions and 36 deletions
+15
View File
@@ -30,6 +30,15 @@ func _on_button_club_mouse_entered() -> void:
func _on_button_club_mouse_exited() -> void:
label.text = "Choose Trump"
func _on_button_top_down_mouse_entered() -> void:
label.text = "Top Down"
func _on_button_top_down_mouse_exited() -> void:
label.text = "Choose Trump"
func _on_button_down_up_mouse_entered() -> void:
label.text = "Down Up"
func _on_button_down_up_mouse_exited() -> void:
label.text = "Choose Trump"
func _on_button_heart_pressed() -> void:
trump.emit("Heart")
@@ -43,3 +52,9 @@ func _on_button_diamond_pressed() -> void:
func _on_button_club_pressed() -> void:
trump.emit("Club")
self.visible = false
func _on_button_top_down_pressed() -> void:
trump.emit("Top")
self.visible = false
func _on_button_down_up_pressed() -> void:
trump.emit("Down")
self.visible = false