Bug Fixes

- Fixes issue where some tools would not be displayed, fixes: #120
- Fixes issue with the resonite utils throwing errors.
- Fixes issue with visemes panel throwing errors.
- Fixes issue where the viseme mesh selector was showing all objects (Armature and etc) it now just shows meshes.
This commit is contained in:
Yusarina
2025-03-23 13:38:18 +00:00
parent b946041ec1
commit dac25e0dc0
3 changed files with 17 additions and 4 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ class AvatarToolkit_OT_ConvertResonite(Operator):
armature = get_active_armature(context)
if not armature:
return False
is_valid, _ = validate_armature(armature)
is_valid, _, _ = validate_armature(armature)
return is_valid
def execute(self, context: Context) -> Set[str]: