-
-
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
[Merged by Bors] - put update_frusta::<Projection>
in UpdateProjectionFrusta
set
#7526
[Merged by Bors] - put update_frusta::<Projection>
in UpdateProjectionFrusta
set
#7526
Conversation
Your PR increases Bevy Minimum Supported Rust Version. Please update the |
@mockersf this doesn't seem right. |
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.
Good change: this makes more sense.
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.
bors r+
) # Objective - less ambiguities - `update_frusta<PerspectiveProjection>` is in `UpdatePerspectiveFrusta` and `update_frusta<OrthographicProjection>` is in `UpdateOrthographicFrusta`, but `UpdateProjectionFrusta` is empty and `update_frusta<Projection>` is directly in `PostUpdate` ## Solution - put `update_frusta<Projection>` in `UpdatePerspectiveFrusta` set **Before** ![image](https://user-images.githubusercontent.com/22177966/217019086-22709204-0e39-4ffc-a43b-0175f86e17ec.png) **After** ![image](https://user-images.githubusercontent.com/22177966/217019117-a28329a1-6614-490c-873f-773efadf6f41.png)
Pull request successfully merged into main. Build succeeded:
|
update_frusta::<Projection>
in UpdateProjectionFrusta
setupdate_frusta::<Projection>
in UpdateProjectionFrusta
set
Objective
less ambiguities
update_frusta<PerspectiveProjection>
is inUpdatePerspectiveFrusta
andupdate_frusta<OrthographicProjection>
is inUpdateOrthographicFrusta
, butUpdateProjectionFrusta
is empty andupdate_frusta<Projection>
is directly inPostUpdate
Solution
update_frusta<Projection>
inUpdatePerspectiveFrusta
setBefore
After