leukbaars / DreamUV

DreamUV - 3D viewport UV editing tools for Blender
1.35k stars 58 forks source link

Fix for Blender 3.0 #18 #25

Closed Draise14 closed 2 years ago

Draise14 commented 2 years ago

Issue

When trying to do certain operators, we had a 3 arguement for a 1 argument python error.

Fix:

In the addon, anywhere that says: mesh, False, False)

Replace with mesh, loop_triangles=False, destructive=False)

This will fix it.

https://github.com/leukbaars/DreamUV/issues/18

bolerodan commented 2 years ago

Now that Blender 3.0 is released, adding support for 3.0 would be amazing.

hi-names-nat commented 2 years ago

Seems to have fixed the issue I was having with DreamUV in the recent 3.0 release!

Shurale7 commented 2 years ago

When using HotSpot, it shows an error in Blender 3.0

Ledracarnos commented 2 years ago

I fixed another problem with DUV_Utils.py line 617 I replaced

bmesh.update_edit_mesh(me, True) by bmesh.update_edit_mesh(me, loop_triangles=True)

leukbaars commented 2 years ago

Very busy with life stuff, 3.0 came out at an unfortunate time for me. I merged @Draise14 pull request for now so it hopefully works for some people, thank you so much!

josepmy commented 2 years ago

Thanks @leukbaars and team

JoelGodin commented 2 years ago

I downloaded master, but the merge didn't seem to happen as I had to manually go into line 617 to make the change. After making the change to ...triangles=True... it then worked for me.

JoelGodin commented 2 years ago

Had another error in UVtranslate. Downloaded the fork from Draise and it seems to work no errors.