Open Liltheris opened 7 months ago
When importing mgn files on Linux, the file paths are wrong, and textures are missing from the automatic assignment. Using Blender 3.4.1 on Arch Linux
The missing textures also appear inconsistent, I have confirmed that the missing files do exist in my export. Screenshots are included below.
EDIT: Changing line 41 in import_mgn.py to be mesh_name=os.path.basename(filepath).rsplit( ".", 1 )[ 0 ] resolves the object name issue.
mesh_name=os.path.basename(filepath).rsplit( ".", 1 )[ 0 ]
Have also updated to newest version of addon to confirm. Same issue
When importing mgn files on Linux, the file paths are wrong, and textures are missing from the automatic assignment. Using Blender 3.4.1 on Arch Linux
The missing textures also appear inconsistent, I have confirmed that the missing files do exist in my export. Screenshots are included below.
EDIT: Changing line 41 in import_mgn.py to be
mesh_name=os.path.basename(filepath).rsplit( ".", 1 )[ 0 ]
resolves the object name issue.