-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the FixedUpdate Schedule #27
Comments
Hmm, if that is the case, its a bug. it should be allowed. |
Is there anything I should try to get it to work, or any other way of troubleshooting this? Even if I get it to be part of the |
Since i'm currently working on a pretty big change to how the entire internal structure of the plugin works, using system chaining to get rid of some of the traits and generics madness and also making the datastructures entities instead of resources, i will try to make sure this works in that new system. I believe it may be a issue with how it currently schedules systems not quite working as intended. |
I migrated my project to latest bevy and bevy_spatial, and |
I would like the update of the k-d tree to be updated before the systems I have dependent on it in the
FixedUpdate
schedule. But there does not seem to exist support for setting schedule toFixedUpdate
. If I add the followingAutomaticUpdate
to my "App":I get this error:
Am I interpreting this correct that it is not supported to run the k-d tree update system with the
FixedUpdate
schedule?The text was updated successfully, but these errors were encountered: