When making optimized meshes in blender I usually get to these “curves” that I want to look smooth yet I dont want to add all the geometry. Adding geometry increases triangle count and makes your game lag etc.
For example, lets say I want this bend to look smooth
The result looks good but the edge split modifier creates these edges by duplicating the vertices! If you use this on meshes, your game could be filled with a lot of unnecessary vertices which can cause lag. For that reason you should never use that modifier.
I recently came across the Auto-Smooth option in the properties menu and it was a godsend. It creates the same effect without duplicating vertices.
This nice shading transfers over to Roblox too. You can adjust the angle to adjust how sharp or smooth you want your edges to be.
There have been a couple of times when I go to use it but the angle option is all blurred out. To fix this, you need to scroll down and under Geometry Date, there will be an option to “Clear Custom Split Normals Data”
This doesn’t seem to actually have any performance improvement in Roblox. I exported it back to an obj from Studio after importing it into Roblox and the edges suddenly became split. The Roblox mesh format likely does not support custom split normals data, so it must split edges instead.
Those duplicated vertices actually occur naturally. Previously when you imported a mesh to Roblox, the vertices get duplicated. It was a bug that they were never quite able to fix. Now roblox de-duplicates those vertices, so in the game the vertices are not duplicated. Its when you export to blender is when they duplicate. This discussion can be found here
@Crazyman32 When you simply use the smooth shading option on particular faces, the shading looks terrible. This is what it looks like in roblox.
I’m pretty sure all faces are triangulated before being rendered. The only reason not to do it yourself is to make working on the model easier on you, b/c triangles don’t always interact well with loop cuts, extrusion etc.
Blender top tip: If you have to smooth a corner very specifically but it only works with more than 4 nodes filled then make a face with 4+ nodes then select the face and under face find “Beautify Faces”, it then reduces it to either triangles or squares whilst maintaining the smooth face.