-
Notifications
You must be signed in to change notification settings - Fork 22
Description
Hi!
I'm trying to import a IQM model using iqm_import.py, but I'm getting an error saying:
AttributeError: 'Mesh' object has no attribute 'show_double_sided'
So, it imports the armature but not the mesh!
I'm using Blender 2.83
Here is the full Blender Info Log:
bpy.ops.object.select_all(action='SELECT')
bpy.ops.object.delete(use_global=False)
Deleted 3 object(s)
bpy.context.space_data.recent_folders_active = 0
bpy.ops.object.add(type='ARMATURE', enter_editmode=True, align='WORLD', location=(0, 0, 0))
bpy.ops.object.editmode_toggle()
Traceback (most recent call last):
File "C:\Users\isaia\AppData\Roaming\Blender Foundation\Blender\2.83\scripts\addons\iqe_import.py", line 945, in execute
import_iqm(self.properties.filepath, self.bone_axis)
File "C:\Users\isaia\AppData\Roaming\Blender Foundation\Blender\2.83\scripts\addons\iqe_import.py", line 920, in import_iqm
make_model(iqmodel, bone_axis, dir)
File "C:\Users\isaia\AppData\Roaming\Blender Foundation\Blender\2.83\scripts\addons\iqe_import.py", line 904, in make_model
meshobj = make_mesh_data(iqmodel, name, meshes[name], amtobj, dir)
File "C:\Users\isaia\AppData\Roaming\Blender Foundation\Blender\2.83\scripts\addons\iqe_import.py", line 655, in make_mesh_data
mesh.show_double_sided = False
AttributeError: 'Mesh' object has no attribute 'show_double_sided'
location: unknown location:-1
Thank you in advance!