X-Plane / XPlane2Blender

Scenery & Aircraft export addon for Blender and X-Plane
GNU General Public License v3.0
190 stars 67 forks source link

Fix: importer branch does not load on Blender 3.3 #713

Closed galvedro closed 1 year ago

galvedro commented 1 year ago

The feat_importer branch produces an addon that fails to load in Blender 3.3 LTS. You install it, then you try to enable it, and it fails. This is caused by two problems:

  1. A typo in the main addon's __init__.py
  2. The Iterable class was moved to collections.abc in Python 3.3.

This PR addresses these two trivial issues. I have tested that the resulting addon starts both in Blender 2.80 and 3.3.1 LTS.

The second point mentioned above is directly related to #708, which looks like it is already addressed in master and could be closed.