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 499c978 commit 4aca55dCopy full SHA for 4aca55d
crates/bevy_pbr/src/pbr_material.rs
@@ -716,7 +716,7 @@ impl AsBindGroupShaderType<StandardMaterialUniform> for StandardMaterial {
716
717
StandardMaterialUniform {
718
base_color: LinearRgba::from(self.base_color).to_f32_array().into(),
719
- emissive: LinearRgba::from(self.base_color).to_f32_array().into(),
+ emissive: LinearRgba::from(self.emissive).to_f32_array().into(),
720
roughness: self.perceptual_roughness,
721
metallic: self.metallic,
722
reflectance: self.reflectance,
0 commit comments