We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 923bdd2 commit f0d8826Copy full SHA for f0d8826
crates/bevy_gizmos/src/pipeline_3d.rs
@@ -91,7 +91,7 @@ impl SpecializedMeshPipeline for GizmoPipeline {
91
entry_point: "fragment".into(),
92
targets: vec![Some(ColorTargetState {
93
format,
94
- blend: Some(BlendState::ALPHA_BLENDING),
+ blend: None,
95
write_mask: ColorWrites::ALL,
96
})],
97
}),
@@ -102,7 +102,7 @@ impl SpecializedMeshPipeline for GizmoPipeline {
102
},
103
depth_stencil: Some(DepthStencilState {
104
format: TextureFormat::Depth32Float,
105
- depth_write_enabled: false,
+ depth_write_enabled: true,
106
depth_compare: CompareFunction::Greater,
107
stencil: Default::default(),
108
bias: Default::default(),
0 commit comments