Uploaded image for project: 'Minecraft: Java Edition'
  1. Minecraft: Java Edition
  2. MC-247434

Nether renders 4x as many chunks as necessary

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • None
    • 1.18.1, 1.18.2, 1.19 Pre-release 2, 23w44a
    • None
    • Community Consensus
    • Rendering
    • Normal
    • Platform

      It seems that the way fog works in the nether is that the fog distance is something like:
      min(6, renderDistance / 2)
      Which means that even if the render distance is 8, you only get to see 4 chunks out. That means you're rendering 4x as many chunks as you can see.
      There are 2 possible fixes:

      • If the intention is that the nether is always more constrained than the render distance you're used to in the overworld, make the actual render distance used in the nether around half of what the render distance slider is, but keep the fog distance how it is, so that the performance is optimal without changing how it looks.
      • Make the fog distance in the nether use something like: min(6, max(renderDistance / 2,  renderDistance - 2)), (the minus 2 or so to counter pop-in), as halving what's visible wastes performance by rendering a lot of chunks that you can't see. Additionally the actual render distance in the nether should be something like: min(8, renderDistance)

        1. 13 chunks.png
          13 chunks.png
          2.44 MB
        2. 2022-05-24_12.00.21.png
          2022-05-24_12.00.21.png
          1.01 MB
        3. 2022-05-24_12.00.51.png
          2022-05-24_12.00.51.png
          1.78 MB
        4. 2022-05-24_12.05.30.png
          2022-05-24_12.05.30.png
          1.04 MB
        5. 2022-05-24_12.05.39.png
          2022-05-24_12.05.39.png
          1.86 MB
        6. 32 chunks.png
          32 chunks.png
          2.56 MB
        7. Sodium mod.png
          Sodium mod.png
          1.26 MB

            Unassigned Unassigned
            Steffenvy Steffen
            Votes:
            7 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              CHK: