-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[Merged by Bors] - Update glam to 0.13.0. #1550
Conversation
Don't forget to |
Looks like there were more deprecations in this update:
|
What do you think of replacing |
@mockersf I agree, I think |
Please resolve warnings locally first? |
@Ratysz I did build locally but I did not see these warnings. They appear to be from iOS examples, perhaps they aren't part of the standard build? |
The one I linked runs |
Does that require nightly? failed to build for me at all on Rust stable 1.50 on Windows:
etc. |
The file that is failing now was added at some point after I made this PR, which is why I didn't see it. I need to rebase with main. |
That's odd. I know this sounds silly, but it works on my machine 😄 |
It worked after rebasing. |
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.
I'm excited to see this one land.
Thanks for keeping us up to date! Looks good to me. |
We will need to update hexasphere before merging to avoid duplicate deps: https://github.com/OptimisticPeach/hexasphere |
Of course! I'll have it ready in an hour or so. |
Half an hour, actually, Related: how would you feel if I were to rewrite/refactor |
That sounds good to me! |
bors r+ |
See https://github.com/bitshifter/glam-rs/blob/master/CHANGELOG.md for details on changes. Co-authored-by: Cameron Hart <[email protected]>
Pull request successfully merged into main. Build succeeded: |
…1645) it's a followup of #1550 I think calling explicit methods/values instead of default makes the code easier to read: "what is `Quat::default()`" vs "Oh, it's `Quat::IDENTITY`" `Transform::identity()` and `GlobalTransform::identity()` can also be consts and I replaced the calls to their `default()` impl with `identity()`
See https://github.com/bitshifter/glam-rs/blob/master/CHANGELOG.md for details on changes.