godot_osc_demo/toggle_button.gd
Christopher Arndt 4aeba8ea69 Android export and various tweaks
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2023-11-04 23:45:43 +01:00

10 lines
264 B
GDScript

extends Button
func recv_osc(msg_info, values):
#print("Sender IP: %s" % msg_info["ip"])
#print("Sender Port: %d" % msg_info["port"])
#print("Address: %s" % msg_info["address"])
#print("Types: %s" % msg_info["types"])
set_pressed_no_signal(bool(values[0]))