-
Beta Was this translation helpful? Give feedback.
Answered by
jrouwe
Oct 16, 2024
Replies: 1 comment 1 reply
-
Are you sure that your sphere / box mesh is actually closed? E.g. a box is usually modelled like this: where vertex 'v' is actually 3 different vertices because you need 3 normals (in green) to get correct lighting. For spheres it's the same thing. There's usually a seam where the UV coordinate goes from 1 back to 0 and at that point there are 2 vertices with the same position, same normal but different UV coordinates. You need to ensure that for the simulation mesh there is only 1 vertex per position. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
alienself
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Are you sure that your sphere / box mesh is actually closed? E.g. a box is usually modelled like this:
where vertex 'v' is actually 3 different vertices because you need 3 normals (in green) to get correct lighting.
For spheres it's the same thing. There's usually a seam where the UV coordinate goes from 1 back to 0 and at that point there are 2 vertices with the same position, same normal but different UV coordinates.
You need to ensure that for the simulation mesh there is only 1 vertex per position.