nannou-org / nannou

A Creative Coding Framework for Rust.
https://nannou.cc/
6.05k stars 306 forks source link

osc sender consumes local port but doesn't allow you to receive data #923

Open maeknight opened 1 year ago

maeknight commented 1 year ago

i'm trying to write something that connects with some external equipment that returns data on the udp port you send osc messages on, but it seems that the Sender struct doesn't implement any way to receive those messages.

i guess the current model makes sense for some use cases but i do not have control of the device i'm communicating with in order to tell it to return on another port.

there needs to be a combined SenderReciever struct or similar.