-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[REQUEST] Support for Blender 4.0+ #4
Comments
Tha is for the heads-up. I'll need to check what's is possible and was is depricated. Shouldn't be that hard to adjust it |
Well did some testing todat, took me some time to remember it all. But the current OBJ exporter has an issue. It does not see to keep face_order. I was going nuts about why the UVmap looked so horrible. Than searched on the keep_vertex_order, this option has been taken out but is on by default. But now it seems the face_order is completely off. Kinda weird, this was never an option, so this must be a bug. I think for now, only workaround is that i add to old legacy obj exporter with the addon. I justed tested the version with 2.91 and that does work EDIT |
I'll post a new version tomorrow, hope it fixes your issue as well |
Thanks for looking into this and sorry to drag you back into such an old project. I think my coworker is working on my quick hacked together version but I will let him know that an official fix is coming down the pipe. |
Don't worry about that, glad you did. Now it works again. I would have bumped into it eventually. I use the app now and than. Though I have not jumped ship about the new addon methology. Need to do quite some add-ons using this new method of implementation |
Okay should be working now. Ive tested 2.83, 2.91 and 4.1.1 it works for me in all versions let me know https://github.com/schroef/uvlayout_bridge/releases/latest edit |
I'm actually working in v074 now. I was testing some of the automation features and notices Optimize didn't really do anything. I remember some of those codes caused error so 8 left some out. I got optimize to work again now and made some more changes to the panels. I'll add that version tomorrow |
Done, just added v074. Panel design has changed, you cant see preview in the release post https://github.com/schroef/uvlayout_bridge/releases/tag/v.0.7.4 |
I'm working on another update actually. I was looking at the method of the uv channel function. We can send different channels. So I thought, perhaps nice when you switch it in the panel you also see the preview on the mesh object. So now when you switch to say channel 2, it also switches in the uvmap panel and the color mode in the overlays is set to textured. This is a nice little feature perhaps https://github.com/schroef/uvlayout_bridge/releases/tag/v.0.7.5 |
Did you try it yet? |
Currently the plugin does not work with the 4.0 series of Blender. This is due to
bpy.ops.export_scene.obj
being deprecated in favor ofbpy.ops.wm.obj_export
. We can get around this temporarily by manually rewriting the code in the AppData folder but some of the parameters have been renamed or are not available in the new function. There may also be a few other scripts that are broken due to similar changes.The text was updated successfully, but these errors were encountered: