You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to import E0017, the addon throws an error mentioning upgrades and armatures.
Edit: September 9th, 2024
After looking into the event's data using splitEvent, I found that the event is pointing to data for the model for Tails's windshield, which this event does not have. My guess is that when attempting to import E0017, it tries to find a model for Tails's windshield but can't because it does not exist, causing it to fail. Removing that data from the cutscene causes it to import properly.
The Error
Python: Traceback (most recent call last):
File "C:\Users\Mars1\AppData\Roaming\Blender Foundation\Blender\4.2\extensions\saio\sonic_adventure_io\source\register\operators\base.py", line 27, in execute
return self._execute(context)
^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\Mars1\AppData\Roaming\Blender Foundation\Blender\4.2\extensions\saio\sonic_adventure_io\source\register\operators\import_operators.py", line 404, in _execute
importer.process(import_data)
File "C:\Users\Mars1\AppData\Roaming\Blender Foundation\Blender\4.2\extensions\saio\sonic_adventure_io\source\importing\i_event.py", line 640, in process
self._categorize_models()
File "C:\Users\Mars1\AppData\Roaming\Blender Foundation\Blender\4.2\extensions\saio\sonic_adventure_io\source\importing\i_event.py", line 358, in _categorize_models
self._setup_attach_upgrade(
File "C:\Users\Mars1\AppData\Roaming\Blender Foundation\Blender\4.2\extensions\saio\sonic_adventure_io\source\importing\i_event.py", line 321, in _setup_attach_upgrade
if target_object.type == "ARMATURE":
^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'type'
The text was updated successfully, but these errors were encountered:
Issue
When attempting to import E0017, the addon throws an error mentioning upgrades and armatures.
Edit: September 9th, 2024
After looking into the event's data using
splitEvent
, I found that the event is pointing to data for the model for Tails's windshield, which this event does not have. My guess is that when attempting to import E0017, it tries to find a model for Tails's windshield but can't because it does not exist, causing it to fail. Removing that data from the cutscene causes it to import properly.The Error
The text was updated successfully, but these errors were encountered: