monsieurgustav / UE-OSC

OSC plugin for Unreal Engine 4 Blueprints
MIT License
323 stars 95 forks source link

Calling OSC Receiver In Editor ( Editor Utility) #88

Open dpredie opened 3 years ago

dpredie commented 3 years ago

Hi, so far the OSC receiver on this plugin works in Play mode, I am trying to make it work with Editor Utility to be able to receive OSC messages in Editor, but the BP Component doesnt seem to fire the receiver so far. Is this supported or I am not doing this correctly?

Thank you :)

monsieurgustav commented 3 years ago

Hi, You mean in the editor, while not playing? To move actors using OSC messages instead of the gizmo for example? It is not supported: OSC receivers are registered in BeginPlay, just like UDP port listening.

I guess it's not a big deal to hack your way through it.