LOD
LOD LOD refers to Level of Detail. It is a performance saving technique employed by Unity. When an object is close to the camera, the geometry of the object is rendered at full resolution. The resolution of the geometry falls as the distance from the camera increases. Setting up LOD in Unity It is best practice to attach the LOD Group component to an empty parent gameObject, and have the different LOD levels be children of it. Setting up LOD levels for a Sphere: 1. Create a sphere in Unity. This sphere is pretty high res, so if we have multiple of these spheres in our Game world, our GPU won't be too happy about it. 2. Now we create a lower resolution sphere inside of Blender. Open the default scene and delete the cube that comes along with it. Add an icosphere using SHIFT + A. In the modifier settings tab, create a subdivision surface. set the Levels Viewport to 2. 3. Imp...