feat(body_mesh): Add edge UV data for facial and hair mesh components

- Add edge UV coordinate data for N00_000_00_FaceEyelash_00_FACE mesh instance with 112 edges
- Add edge UV coordinate data for N00_000_00_HairBack_00_HAIR mesh instance with 800 edges
- Update body_mesh module initialization and operations to support new mesh data
- Enhance panel UI and utility functions for mesh edge UV handling
- Add comprehensive UV matching test suite for validation
- Update registration module to include new mesh components
- Improve test utilities for edge UV data verification
This commit is contained in:
2026-01-02 13:32:03 +08:00
parent f2257449de
commit 21222044c4
10 changed files with 10147 additions and 58 deletions

View File

@@ -1,8 +1,9 @@
# SPDX-License-Identifier: MIT OR GPL-3.0-or-later
from .ops import VRM_OT_separate_non_skin_faces
from .ops import VRM_OT_merge_uv_edges, VRM_OT_separate_non_skin_faces
from .panel import VRM_PT_body_mesh_separator
__all__ = [
"VRM_OT_merge_uv_edges",
"VRM_OT_separate_non_skin_faces",
"VRM_PT_body_mesh_separator",
]