mirror of
https://github.com/godotengine/godot.git
synced 2024-11-15 00:23:27 +00:00
18d6ae1161
When UVs are mirrored in a mesh, collapsing vertices across the mirroring seam can significantly reduce quality in a way that is not apparent to the simplifier. Even if simplifier was given access to UV data, the coordinates would need to be weighted very highly to prevent these collapses, which would penalize overall quality of reasonable models. Normally, well behaved models with mirrored UVs have tangent data that is correctly mirrored, which results in duplicate vertices along the seam. The simplifier automatically recognizes that seam and preserves its structure; typically models have few edge loops where UV winding is flipped so this does not affect simplification quality much. However, pre-processing for LOD data welded vertices when UVs and normals were close, which welds these seams and breaks simplification, creating triangles with distorted UVs. We now take tangent frame sign into account when the input model has tangent data, and only weld vertices when the sign is the same. |
||
---|---|---|
.. | ||
box_shape_3d.cpp | ||
box_shape_3d.h | ||
capsule_shape_3d.cpp | ||
capsule_shape_3d.h | ||
concave_polygon_shape_3d.cpp | ||
concave_polygon_shape_3d.h | ||
convex_polygon_shape_3d.cpp | ||
convex_polygon_shape_3d.h | ||
cylinder_shape_3d.cpp | ||
cylinder_shape_3d.h | ||
fog_material.cpp | ||
fog_material.h | ||
height_map_shape_3d.cpp | ||
height_map_shape_3d.h | ||
importer_mesh.cpp | ||
importer_mesh.h | ||
mesh_library.cpp | ||
mesh_library.h | ||
navigation_mesh_source_geometry_data_3d.cpp | ||
navigation_mesh_source_geometry_data_3d.h | ||
primitive_meshes.cpp | ||
primitive_meshes.h | ||
SCsub | ||
separation_ray_shape_3d.cpp | ||
separation_ray_shape_3d.h | ||
shape_3d.cpp | ||
shape_3d.h | ||
skin.cpp | ||
skin.h | ||
sky_material.cpp | ||
sky_material.h | ||
sphere_shape_3d.cpp | ||
sphere_shape_3d.h | ||
world_3d.cpp | ||
world_3d.h | ||
world_boundary_shape_3d.cpp | ||
world_boundary_shape_3d.h |