Another fix to the preview shell (#2821)

This commit is contained in:
Noisyfox 2023-11-22 23:21:34 +08:00 committed by GitHub
parent a085ac6e32
commit a6163a1550
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4038,7 +4038,7 @@ void GCodeViewer::render_shells()
shader->start_using();
shader->set_uniform("emission_factor", 0.1f);
const Camera& camera = wxGetApp().plater()->get_camera();
m_shells.volumes.render(GLVolumeCollection::ERenderType::Transparent, true, camera.get_view_matrix(), camera.get_projection_matrix());
m_shells.volumes.render(GLVolumeCollection::ERenderType::Transparent, false, camera.get_view_matrix(), camera.get_projection_matrix());
shader->set_uniform("emission_factor", 0.0f);
shader->stop_using();