You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that within the context of Bevy, rfd must be invoked from the main thread on this platform. rfd's docs suggest that it should work from any thread, but I just get an infinite spinning beachball unless I use this workaround.
This can be accomplished by adding a "NonSend" marker to the system parameter doing the exporting.
fnexport_system(marker:NonSend<NonSendMarker>){}
The text was updated successfully, but these errors were encountered:
It seems that within the context of Bevy,
rfd
must be invoked from the main thread on this platform.rfd
's docs suggest that it should work from any thread, but I just get an infinite spinning beachball unless I use this workaround.This can be accomplished by adding a "NonSend" marker to the system parameter doing the exporting.
The text was updated successfully, but these errors were encountered: