1
0
mirror of https://github.com/DarklightGames/io_scene_psk_psa.git synced 2025-01-31 19:55:26 +01:00

PSK files imported with custom normals will now have Auto Smooth enabled by default (#67)

This commit is contained in:
Colin Basnett 2024-01-22 11:26:09 -08:00
parent 30586fa8bb
commit 7e6911c709

View File

@ -227,6 +227,7 @@ def import_psk(psk: Psk, context, options: PskImportOptions) -> PskImportResult:
for vertex_normal in psk.vertex_normals:
normals.append(tuple(vertex_normal))
mesh_data.normals_split_custom_set_from_vertices(normals)
mesh_data.use_auto_smooth = True
else:
mesh_data.shade_smooth()