Fix issue that thumbnail color not updated properly when AMS slot mapping changes (#7194)

* Fix issue that thumbnail color not updated properly when AMS slot mapping changes
This commit is contained in:
Noisyfox 2024-10-25 23:25:17 +08:00 committed by GitHub
parent 983f1a827e
commit ae31f4fb1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 2 deletions

View file

@ -5939,7 +5939,7 @@ void GLCanvas3D::render_thumbnail_internal(ThumbnailData& thumbnail_data, const
ColorRGBA new_color = adjust_color_for_rendering(curr_color);
if (ban_light) {
new_color[3] = (255 - vol->extruder_id) / 255.0f;
new_color[3] =(255 - (vol->extruder_id -1))/255.0f;
}
vol->model.set_color(new_color);
shader->set_uniform("volume_world_matrix", vol->world_matrix());