Files
blender-vrm/editor/body_mesh/__init__.py
小煜 21222044c4 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
2026-01-02 13:32:03 +08:00

10 lines
284 B
Python

# SPDX-License-Identifier: MIT OR GPL-3.0-or-later
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",
]