-
Notifications
You must be signed in to change notification settings - Fork 4
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
cargo +nightly run --example bouncing_balls
-> no method is_older_than
#3
Comments
The bevy main branch was just updated today with this PR that I had submitted to clarify the behavior of that method. With that and the other pr mentioned in #2, the custom patch is actually no longer necessary. I plan to merge that and update the readme later on today when I have the time. For now, checkout the |
Also, the extension trait would not have worked because the field I wanted to return was marked |
Cool. Thanks for the snappy response(s). That all sounds like nice, rapid progress. I know how it goes! Feel free to close. |
|
#2 was merged, |
Hi. I was excited to see your crate. I'm trying to rearchitect some things so that I can use an
enum
to maintain the "state" of an entity, which you can do currently but at the cost of an additional indention level and a small efficiency hit....anyway.
I tried to run
cargo +nightly run --example bouncing_balls
Everything resolved and compiled fine, but when I got tobevy_mod_index
I got the following fromrustc
:This is with
nightly-x86_64-apple-darwin
which for me isrustc 1.66.1 (90743e729 2023-01-10)
.I did patch
ChangeTrackers
as indicated. I did this by modifying~/.cargo/git/checkouts
, which I believe works (if a bad practice.)I think this error occurs before any of that.
BTW... I wonder if instead of patching the source, a so-called "extension trait" could be used.
The text was updated successfully, but these errors were encountered: