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
In Blender 4.2 it was not working then i troubleshooted the problem cuz i am a skid.
I found out that if the error is fix line 1393, then open the innit.py file in the
(C:\Users\Your user\AppData\Roaming\Blender Foundation\Blender\4.2\scripts\addons\sketchfab-plugin-1-6-1/innit.py)
and go to line 1393. As shown below and
1392 if bpy.context.scene.render.engine not in ["CYCLES", "BLENDER_EEVEE"]:
1393 bpy.context.scene.render.engine = "BLENDER_EEVEE" <---------- Change BLENDER_EEVEE to BLENDER_EEVEE_NEXT
1394 try:
In fact, i think it will be better to add BLENDER_EEVEE_NEXT in the first line (1392) : if bpy.context.scene.render.engine not in ["CYCLES", "BLENDER_EEVEE","BLENDER_EEVEE_NEXT"]:
Blender latest 4.2.3 LTS on Windows 10
Search for something like a chair, select and click Import, get an error. (works if switch to cycles)
Python: Traceback (most recent call last):
File "C:\Users\Me\AppData\Roaming\Blender Foundation\Blender\4.2\scripts\addons\sketchfab-plugin-1-6-1_init_.py", line 1393, in modal
bpy.context.scene.render.engine = "BLENDER_EEVEE"
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: bpy_struct: item.attr = val: enum "BLENDER_EEVEE" not found in ('BLENDER_EEVEE_NEXT', 'BLENDER_WORKBENCH', 'CYCLES')
The text was updated successfully, but these errors were encountered: