Armature Validation P2
- Added Highlight Bone System in the 3D View, can be turned off in settings. - Added more bones to the acceptable bone lists. - Fixed issue with properties registrations and unregistration, the system is more rebust now. - Added a validate t-pose system - Added a detect bone scales system. - Fixed some translation strings - Armature validation now uses logger system.
This commit is contained in:
@@ -35,4 +35,11 @@ def update_logging_state(self: Any, context: Context) -> None:
|
||||
from .addon_preferences import save_preference
|
||||
enabled = self.enable_logging
|
||||
save_preference("enable_logging", enabled)
|
||||
configure_logging(enabled)
|
||||
configure_logging(enabled)
|
||||
|
||||
def highlight_problem_bones(self: Any, context: Context) -> None:
|
||||
"""Log when problem bones are highlighted"""
|
||||
from .addon_preferences import save_preference
|
||||
enabled = self.highlight_problem_bones
|
||||
save_preference("highlight_problem_bones", enabled)
|
||||
logger.debug(f"Problem bone highlighting {'enabled' if enabled else 'disabled'}")
|
||||
|
||||
Reference in New Issue
Block a user