Skip to content
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

don't use bevy_pbr for base bevy_gizmos plugin #17581

Merged
merged 12 commits into from
Mar 10, 2025

Conversation

rambip
Copy link
Contributor

@rambip rambip commented Jan 28, 2025

Objective

This PR enables bevy_gizmos to be used without bevy_pbr, for user who want to create their custom mesh rendering logic.

It can also be useful for user who just want to use bevy for drawing lines (why not).

This work is part of a bigger effort to make the bevy rendering pipeline more modular. I would like to contribute an exemple to render custom meshes without bevy_pbr. Something like this

Solution

Now, bevy_pbr is an optional dependency, and used only to debug lights.

I query the ViewUniforms manually, instead of using bevy_pbr to get the heavy MeshViewLayout

Testing

I'm not used to testing with bevy at all, but I was able to use successfully in my project.
It might break for some different mesh pipelines, but I don't think so.


Showcase

image
So nice ...

Migration Guide

I don't think there is any breaking change

Remaining work

Before merging it, it would be useful to:

  • rewrite the pipeline_2d.rs logic to remove the bevy_sprite depedency too
  • move view.rs to bevy_render, so that it can be used in a more modular way.
    - include the most recent changes from 0.16

@alice-i-cecile alice-i-cecile added A-Rendering Drawing game state to the screen C-Usability A targeted quality-of-life change that makes Bevy easier to use C-Code-Quality A section of code that is hard to understand or change S-Needs-Review Needs reviewer attention (from anyone!) to move forward labels Jan 28, 2025
@alice-i-cecile alice-i-cecile requested a review from atlv24 January 28, 2025 18:23
@alice-i-cecile alice-i-cecile added the D-Straightforward Simple bug fixes and API improvements, docs, test and examples label Jan 28, 2025
Copy link
Contributor

@IceSentry IceSentry left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like where this is going, but needs a few changes.

@@ -143,8 +141,12 @@ const LINE_SHADER_HANDLE: Handle<Shader> = Handle::weak_from_u128(74148126892380
const LINE_JOINT_SHADER_HANDLE: Handle<Shader> = Handle::weak_from_u128(1162780797909187908);

/// A [`Plugin`] that provides an immediate mode drawing api for visual debugging.
/// It does *not* require `bevy_pbr`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That comment isn't necessary.

) {
if let Some(view_binding) = view_uniforms.uniforms.binding() {
for entity in &views {
let entries = DynamicBindGroupEntries::new_with_indices(((0, view_binding.clone()),));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be moved to be before the loop.

layout: Res<OnlyViewLayout>,
views: Query<Entity>,
) {
if let Some(view_binding) = view_uniforms.uniforms.binding() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer a let-else with early return but that's a tiny nitpick and purely optional.

DynamicBindGroupEntries, DynamicBindGroupLayoutEntries, ShaderStages,
},
renderer::RenderDevice,
view::{ViewUniform, ViewUniforms},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should fix CI

Suggested change
view::{ViewUniform, ViewUniforms},
view::{ExtractedView, ViewUniform, ViewUniforms},

@rambip
Copy link
Contributor Author

rambip commented Jan 28, 2025

I did the same thing for pipeline_2d, pretty straightforward.

Now bevy_sprite is not a dependency anymore and bevy_pbr is optional.

Right now pipeline3d and pipeline2d look very similar, maybe they share some functionality that could be merged.

I would love view.rs to move to bevy_render so that I can fill a PR to rewrite the custom_mesh_pipeline example to work without bevy_pbr.

@IceSentry
Copy link
Contributor

I'd be more than happy to review and approve a PR that moves shared things from 2d/3d to bevy_render. We want to break appart bevy_render because it's giant, but moving shared things to it still makes sense.

I'd also be happy to review and approve a PR that moves the OnlyViewLayout thing to bevy render, but I think this could be done after this current PR is merged.

@rambip
Copy link
Contributor Author

rambip commented Jan 28, 2025

Ok, I prepare a new PR for

    1. moving OnlyViewLayout to bevy_render
    1. updating the example.

Do you know where in the bevy_render crate the view stuff should go ?

@IceSentry
Copy link
Contributor

Answered in discord to keep this discussion relevant to this PR

@rambip
Copy link
Contributor Author

rambip commented Feb 21, 2025

Is there something missing to merge this issue ?

@IceSentry
Copy link
Contributor

IceSentry commented Feb 21, 2025

A second review. Bevy needs 2 reviews per PR.

I'd suggest resolving all conversations just to make sure reviewer don't skip the PR because of it.

@alice-i-cecile
Copy link
Member

Sorry @rambip; we needed a second reviewer. This looks sensible to me: if you get merge conflicts resolved I'll merge this ASAP.

@alice-i-cecile alice-i-cecile added S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it and removed S-Needs-Review Needs reviewer attention (from anyone!) to move forward labels Mar 9, 2025
@rambip
Copy link
Contributor Author

rambip commented Mar 10, 2025

I suspect that the issue in #17945 would be automatically fixed by my proposed solution, so I will merge with my changes.
I'm not 100% sure though.

@alice-i-cecile alice-i-cecile added this pull request to the merge queue Mar 10, 2025
Merged via the queue into bevyengine:main with commit b574599 Mar 10, 2025
35 checks passed
mockersf added a commit to mockersf/bevy that referenced this pull request Mar 15, 2025
github-merge-queue bot pushed a commit that referenced this pull request Mar 17, 2025
# Objective

- #17581 broke gizmos
- Fixes #18325

## Solution

- Revert #17581 
- Add gizmos to testbed

## Testing

- Run any example with gizmos, it renders correctly
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-Rendering Drawing game state to the screen C-Code-Quality A section of code that is hard to understand or change C-Usability A targeted quality-of-life change that makes Bevy easier to use D-Straightforward Simple bug fixes and API improvements, docs, test and examples S-Ready-For-Final-Review This PR has been approved by the community. It's ready for a maintainer to consider merging it
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

4 participants