If I have my app setup with .insert_resource(WinitSettings::desktop_app()), how can I force certain systems to run normally?
The problem is that I have a system, animate_loading_images, that will do an opacity animation on a FixedUpdate. It looks pretty good with WinitSettings::game but not with WinitSettings::desktop_app where it only steps the animation once every 5 seconds or until I move the mouse.
I tried sending a RequestRedraw event from within the system but that didn't seem to work.
Is there a way to make a system run normally despite the WinitSettings?