- 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
10 lines
284 B
Python
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",
|
|
]
|