Replies: 2 comments
-
Already tracked by #6243 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Let's close for consolidation, since there is already a proposal. Thanks for the contribution nonetheless! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
It already exists one
#6243
Is there a easy way to AWAIT for more than one signal ?
Something like:
_ var b = await %Button1.button_up | %Button2.button_up
_ print("button_up " + str(b) )
in stead of:
_ var b = await b1_or_b2
_ print("button_up " + str(b) )
_
func _on_button_1_button_up():
_ emit_signal("b1_or_b2", button.b1)
_
func _on_button_2_button_up():
_ emit_signal("b1_or_b2", button.b2)
Beta Was this translation helpful? Give feedback.
All reactions