rblz
rblz
I have this issue too. I know it's related to NVIDIA/graphics drivers and not my network because reinstalling the drivers fixes the issue (then the issue will happen again later...
Same error from me. Using latest version of vrm-rigify with Blender 4.5.2. Using 3.13 of VRM import addon. Also tested with Avatar Toolkit importer, no luck.
Fix: ``` metarig_bone = getattr(metarig_human_bones, bone_type).node vrm_bone = getattr(vrm_human_bones, bone_type).node ``` replace with: ``` metarig_bone_attr = getattr(metarig_human_bones, bone_type, None) vrm_bone_attr = getattr(vrm_human_bones, bone_type, None) if ( hasattr(metarig_bone_attr, "node") and hasattr(vrm_bone_attr,...