godot_osc_demo/toggle_button.gd
Christopher Arndt b7ef9bc01b feat: basic support for OSC sending
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2023-11-04 16:06:33 +01:00

10 lines
260 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]))