getnamo/UDP-Unreal

UDP not receiving data, also missing settings?

Closed this issue · 2 comments

UDPcomponent doesn't seem to create any listeners on the given port. Also tried with manually launching the Open Receive Socket, which successfully fires, but UDP does not start any port listeners. Can't send dummy packets to localhost/127.0.0.1 etc. "Netstat -na" does not show any listening UDP ports on port "3002".

Also UDPcomponent doesn't seem like it has the same settings as the picture on the plugin's main page.

See attachments.

blueprint
UDPcomponent

It appears that you're not adding your UDP component to an actor via Add component but as some variable or trying to add the component to a non-actor class. This is not supported. Add the component to an actor via add component.

It should look something like this:

image

That solved it, and i was clicking the added object in the blueprint window to see the settings, instead of the main component on the left pane. Thank you!