-
Notifications
You must be signed in to change notification settings - Fork 23
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
Export smoothed model messes with UVs #3
Comments
Hi, I think I understand what is your problem. MD3 requires vertices to have hard-binded values of normal and UV, if you need same position, but with different normal or UV, you have to duplicate vertices. Script does detect cases where you have different normal values for same vertex and duplicates them automatically, but it doesn't consider UV coords. |
I'm not sure whether I fixed it, but try this: https://github.com/neumond/blender-md3/tree/uvfix |
Thanks for the quick fix, the UVs are left untouched now, though there are still those sharp edges left. I can manually create an object with split edges and still keep its normals smooth:
Maybe an option to export meshes without automatic edge splitting could solve this. Btw, an option to export only selected meshes would be nice, so it wouldn't be necessary to create separate files for each model. |
Oh my blender is little bit outdated, but let me guess
I think export script reads original normal data from the model, without data transfer applied. My code for to_mesh conversion is pretty standard: obj.to_mesh(bpy.context.scene, True, 'PREVIEW') Here apply_modifiers=True. But DataTransfer seems to be slightly unusual modifier. |
Hi,
when exporting a smoothed model without sharp edges the UVs get messed up. So I'm forced to split the edges along the seams.
This looks bad on a model with a normal map which is baked from a high poly mesh.
Is this a restriction from md3 format or can this be fixed in the export script?
The text was updated successfully, but these errors were encountered: