Hello!
My main use case (virtual production, esports broadcast) involves loading a large number of images at runtime from URLs. The problem is that most available options for loading returns the image in the Texture2DDynamic format, while your Load Texture node only accepts Texture2D https://rive.app/docs/game-runtimes/unreal/runtime-asset-swapping#image-assets
I see that there is an alternative node, Load Image Bytes, but the conversion process for this looks like a headache also. As per my current research, most likely it comes with a lot of unneeded work such as dragging texture through all sorts of middlewares (brushes, writing and re-reading from disk, etc) and making a wrapper about something that actually can load image as bytes like VaRest.
Do you have plans to support Texture2D Dynamic as source for image, or should I stick to developing my own conversion solution?
Thanks in advance for your help.