When graphics mode is set to Direct3D11, or in the case of me and (I assume) most windows-based players, some meshparts are incorrectly culled on the edges of the screen.
(Observe the windows, green panels, and thatch trim)
My guess is that this is a culling issue because when you increase the dimensions of a given object it changes the point at which it is culled. Presumably because enough of that mesh is now entering an important part of the frame.
(Observe the top windows on the right)
There is a solved bug here that describes a very similar issue relating to an object’s CollisionFidelity, however changing the CollisionFidelity has no bearing on this particular problem.
The culling is also invariant to distance, and will happen at the same angles regardless of the camera’s distance from the object.
It also, as far as we can tell, only effects mesh faces that are flat, facing one direction. Editing the mesh to be none-planar or to have extrusions in a different direction also seems to solve the issue.
Lastly, as stated, this only happens when using GraphicsMode Direct3D11 (haven’t tested Metal). On OpenGL and Vulkan there are no issues.