-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Remove OnUpdate system set #8260
Conversation
Example |
Let's merge #7676 first, then this will no longer be controversial. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets hold off until #7676 is merged (its currently in the merge queue). After that merge, we should adapt the distributed_run_if
cases to use run_if
@lewiszlw could you look over the changes I made to remove |
Yeah, definitely agreed. |
# Objective - Fixes bevyengine#8239. ## Solution - Replace `OnUpdate` with `run_if(in_state(xxx))`. --- ## Migration Guide - Replace `OnUpdate` with `run_if(in_state(xxx))`. --------- Co-authored-by: Alice Cecile <[email protected]>
Objective
OnUpdate
system set #8239.Solution
OnUpdate
withrun_if(in_state(xxx))
.Migration Guide
OnUpdate
withrun_if(in_state(xxx))
.