Merge remote-tracking branch 'origin/blender-v2.83-release'
This commit is contained in:
@@ -142,6 +142,7 @@ class TIME_MT_view(Menu):
|
|||||||
layout.separator()
|
layout.separator()
|
||||||
|
|
||||||
layout.prop(scene, "show_keys_from_selected_only")
|
layout.prop(scene, "show_keys_from_selected_only")
|
||||||
|
layout.prop(st.dopesheet, "show_only_errors")
|
||||||
|
|
||||||
layout.separator()
|
layout.separator()
|
||||||
|
|
||||||
|
@@ -137,7 +137,8 @@ static void get_loop_normals(struct Mesh *mesh,
|
|||||||
|
|
||||||
/* If all polygons are smooth shaded, and there are no custom normals, we don't need to export
|
/* If all polygons are smooth shaded, and there are no custom normals, we don't need to export
|
||||||
* normals at all. This is also done by other software, see T71246. */
|
* normals at all. This is also done by other software, see T71246. */
|
||||||
if (!has_flat_shaded_poly && !CustomData_has_layer(&mesh->ldata, CD_CUSTOMLOOPNORMAL)) {
|
if (!has_flat_shaded_poly && !CustomData_has_layer(&mesh->ldata, CD_CUSTOMLOOPNORMAL) &&
|
||||||
|
(mesh->flag & ME_AUTOSMOOTH) == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user