Conversation
james7132
self-requested a review
November 14, 2022 01:52
hymm
self-requested a review
November 14, 2022 03:02
james7132
requested changes
Nov 14, 2022
james7132
left a comment
Member
There was a problem hiding this comment.
This is just a cursory scan. A full review to come later.
| fn init(&mut self, schedule: &SystemSchedule) { | ||
| let sys_count = schedule.system_ids.len(); | ||
| let set_count = schedule.set_ids.len(); | ||
| self.completed_sets = FixedBitSet::with_capacity(set_count); |
Member
There was a problem hiding this comment.
nit: The sys_count/set_count is not used elsewhere, directly passing them in here is probably as readable as it is now.
maniwani
force-pushed
the
stageless
branch
4 times, most recently
from
November 15, 2022 06:25
42c96cc to
7754cda
Compare
maniwani
force-pushed
the
stageless
branch
2 times, most recently
from
November 15, 2022 20:43
e0bd75b to
1d5f5a4
Compare
maniwani
marked this pull request as ready for review
November 15, 2022 20:57
| derive_label(input, &trait_path, "run_criteria_label") | ||
| } | ||
|
|
||
| /// Derive macro generating an impl of the trait `ScheduleLabel`. |
Member
There was a problem hiding this comment.
Are we able to doc link these traits?
Member
|
bors r+ |
bors Bot
pushed a commit
that referenced
this pull request
Jan 16, 2023
# Objective Complete the first part of the migration detailed in bevyengine/rfcs#45. ## Solution Add all the new stuff. ### TODO - [x] Impl tuple methods. - [x] Impl chaining. - [x] Port ambiguity detection. - [x] Write docs. - [x] ~~Write more tests.~~(will do later) - [ ] Write changelog and examples here? - [x] ~~Replace `petgraph`.~~ (will do later) Co-authored-by: james7132 <contact@jamessliu.com> Co-authored-by: Michael Hsu <mike.hsu@gmail.com> Co-authored-by: Mike Hsu <mike.hsu@gmail.com>
Member
|
This PR consistently timeout CI: https://github.com/bevyengine/bevy/actions/workflows/ci.yml?query=branch%3Astageless, while other PR are running without issues. This would point to an issue in this one... |
Contributor
|
Running tests using the |
|
Timed out. |
Member
|
bors r+ |
commented
Jan 17, 2023
|
Pull request successfully merged into main. Build succeeded:
|
bevy_ecs::schedule_v3 modulebevy_ecs::schedule_v3 module
33 tasks
Closed
This was referenced Feb 6, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Objective
Complete the first part of the migration detailed in bevyengine/rfcs#45.
Solution
Add all the new stuff.
TODO
Write more tests.(will do later)Replace(will do later)petgraph.