I have a button with Toggle Mode enabled:
func _on_toggle_button_down() -> void:
print("hello")
func _on_toggle_button_up() -> void:
print("goodbye")
When I click and release the mouse on the button, both hello and goodbye gets printed.
What I want is to print hello when the button is clicked (toggled), and print goodbuy when the button is untoggled
There is a "toggled" signal available however, it doesnt diffirentiate if its toggled ON or OFF .
Is this a bug, or am I doing something wrong?