Fri Jan 6. 2023
Minecraft has evolved in complexity over time despite its simplicity and gameplay. Much of this complexity can be seen in the game's internal structure.
One of Minecraft's many settings and options is "simulation distance." This parameter may not be obvious but it can have a significant impact on the actual setting. While things like difficulty, graphics, FOV, and FOP are relatively simple, Minecraft settings such as simulation distance can be quite complex.
Simulator distance and render distance are very similar. Simulation distance determines whether the game renders visible chunks of code and loads them in from far away. Render distance is how far from the player, while simulation distance determines whether the code is "active."
Minecraft players have their visible chunks loaded into via the render distance setting. However, simulation distance determines whether these chunks are active interacting with the environment. Simulation distance determines which chunks have their entities updated and which blocks ticked. A chunk activated at simulation distance will generate entities like mobs. Blocks such as water and lava will also be ticked, and the appropriate flow will occur.
Minecraft chunks loaded in render distance but not active via simulation will appear as landscape. Plant growth, animal maturation and mob spawning will not be visible unless the chunk is within the simulation distance of the player. Minecraft uses this method to save memory, because chunks beyond the simulation distance can't be viewed often and are far from the player.