Skip to content

Commit

Permalink
make deferred_rendering simpler to render for CI (bevyengine#10150)
Browse files Browse the repository at this point in the history
# Objective

- Example `deferred_rendering` sometimes fail to render in CI
- Make it easier to render

## Solution

- Reduce the complexity of the sphere used
  • Loading branch information
mockersf authored and ameknite committed Nov 6, 2023
1 parent 4496a41 commit 7580b3c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/3d/deferred_rendering.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ fn setup(
let cube_h = meshes.add(Mesh::from(shape::Cube { size: 0.1 }));
let sphere_h = meshes.add(Mesh::from(shape::UVSphere {
radius: 0.125,
sectors: 128,
stacks: 128,
..default()
}));

// Cubes
Expand Down

0 comments on commit 7580b3c

Please sign in to comment.