Im trying to apply a nice reflection to my vehicle but the reflection seems to be getting stretched by the polies of the model.So if i have a low poly model that is kinda messy then the reflection is real weird and not uniform.If i have a very high poly model with polies that flow through the hole model the reflection is ok.
Im not using any special reflection shader just the one that comes built in with unity.
I just want the reflection to kinda lay across the model and ignore the polies or vertexes of the model.The reflection should go across the vehicle depending on its shape and geometry.
If im wrong please tell me but my reflections are just really stretched out on flat surfaces.
thats a cubemap based reflection so it technically should work.
perhaps you expect a reflection thats more accurate than what cubemap offers? (cubemap is rendered from 1 point onto the 6 sides of the cube that surround it and then projected inward onto your model)
Also ensure that the model is not over the edge large cause it will become less accurate the larger the model becomes (the texture is still the same cube).
but just to be sure: what share are you using on the material?
I fail to see a problem aside of the one area there on the truck at the right side which might be related to the normals in that area
What you see otherwise is how its meant to look, how a center point project looks on objects and always will. (in reality it would look like this too)
the refleciton / the point on the cubemap thats used for a pixel on the object depends on the normal at that position, so for the cylinder you basically cover a range of 180 degree thats mapped on that small area and correspondingly they get pushed together on the horizontal axis like this if you use that much data but so little radial distance (you are mapping 128 pixels onto what you see there, vertical as horizontal) so you get a visual “compression”
I mean the vertex normals for the mesh. If you are importing them, then the modelling program will probably show them to you. If you’re generating them on import, you’d have to visualize them with a shader.
To test whether it’s odd normals, though, try changing the import settings to generate normals with a smoothing angle of 0, and compare that to what it looks like with a smoothing angle of 180.
The tangent-space basis is still calculated per-vertex. With a flat normal map you’re basically throwing out a bunch of data and recovering the interpolated vertex normal from that basis. In other words, you’re wasting a lot of time to get the same result as no normal map.
Normals are direction vectors stored in your mesh, one for each vertex. They are used by shaders to determine the direction a surface faces for the purposes of lighting and reflection. You can leave their generation to your modelling package, or you can have Unity generate them on import. Here is the section of the manual (look at the “Normals Tangents” section) that explains how to do that.
Ok.I have a smooth modifier applied to the model in 3ds max.It gives it all a nice smooth look in 3ds max.What is your suggestions to help it out in 3ds max?
Ah, ok. I’ve had that fix stuff with awkward engines in the past, that defaulted specular lighting back to per-vertex if there was no normal map, and adding even flat a normal map forced it to render the normals per-pixel (as the per-vertex interpolation got a little wobbly) and look considerably smoother.