From 2717be19cd1f8edca14d73c5cb1930632207d780 Mon Sep 17 00:00:00 2001 From: Tristan Rowley Date: Sun, 5 Jan 2020 18:23:56 +0000 Subject: [PATCH] re-add generic osc route --- user_input/osc_input.py | 1 + 1 file changed, 1 insertion(+) diff --git a/user_input/osc_input.py b/user_input/osc_input.py index 7323d20..bc379c8 100644 --- a/user_input/osc_input.py +++ b/user_input/osc_input.py @@ -34,6 +34,7 @@ class OscInput(object): this_dispatcher.map("/shaderparam2", self.on_param_osc_input) this_dispatcher.map("/shaderparam3", self.on_param_osc_input) this_dispatcher.map("/shutdown", self.exit_osc_server) + this_dispatcher.map("/*", self.on_param_osc_input) server = osc_server.ThreadingOSCUDPServer((server_args.ip, server_args.port), this_dispatcher) server_thread = threading.Thread(target=server.serve_forever)