Simulation distance
Simulation distance is a world-creation setting in Bedrock Edition that controls mob spawning and despawning, and tick updates. In Java Edition, simulation distance is a video setting related to render distance, to restrict tick update distance.
Range of simulation distance[edit | edit source]
Edition | Bedrock Edition | Java Edition |
---|---|---|
Singleplayer (High device performance) | Even number ranging from 4 to 12, 4 in default.[Note 1] | Integer ranging from 5 to 32, 12 in default. |
Singleplayer (Low device performance) | Even number ranging from 4 to 8, 4 in default.[Note 2] | Integer from 5 to 16, 8 in default.[Note 3] |
Multiplayer | Integer ranging from 4 to 12, 4 in default. | Integer ranging from 3 to 32, 10 in default. |
The simulation distance of the Minecraft server can be modified in the file server.properties.
Bedrock Edition[edit | edit source]
{ "title": "Simulation distance", "rows": [ { "field": "Spawning and despawning range", "label": "Green" }, { "field": "Ticking range", "label": "Red" } ], "invimages": [], "images": [ "Simulation_Distance_4_(Bedrock_1.20.50.20+).png", "Simulation_Distance_5_(Bedrock_1.20.50.20+).png", "Simulation_Distance_6_(Bedrock_1.20.50.20+).png", "Simulation_Distance_7_(Bedrock_1.20.50.20+).png", "Simulation_Distance_8_(Bedrock_1.20.50.20+).png", "Simulation_Distance_9_(Bedrock_1.20.50.20+).png", "Simulation_Distance_10_(Bedrock_1.20.50.20+).png", "Simulation_Distance_11_(Bedrock_1.20.50.20+).png", "Simulation_Distance_12_(Bedrock_1.20.50.20+).png" ] }

Control[edit | edit source]
The simulation distance control appears in the settings page when creating a new world. It is separated by different worlds, and cannot be modified when the world is loading.
Spawning and despawning[edit | edit source]
Simulation distance restricts the range at which mobs spawn and despawn.
The minimum spawning distance is 24 blocks (Euclidean distance) from the player. The maximum spawning distance and despawning distances are determined by the simulation distance, which is a quasi-spherical shell having the following ranges relative to the player:
Simulation distance | Mob spawning range | Mob randomly despawning range | Mob immediately despawning range. |
---|---|---|---|
4 | 24 to 44 blocks of Euclidean distance from player | 32 to 44 blocks of Euclidean distance from player | Greater than 44 blocks of Euclidean distance from player |
>4 | 24 to 128 blocks of Euclidean distance and no greater than chunks of taxicab distance from player | 32 to 128 blocks of Euclidean distance and no greater than chunks of taxicab distance from player | Greater than 128 blocks of Euclidean distance or greater than chunks of taxicab distance from player |
Within the simulation distance, there is a 11⁄2000 chance of the mob spawning algorithm attempting to run per chunk, per tick.
Regardless of simulation distance, mobs with persistence do not despawn, and fish always despawn when they are more than 40 blocks from the nearest player.
Tick updates[edit | edit source]

Simulation distance determines the maximum chunk distance in which entities get updated, and blocks and fluids are ticked. This is not a Euclidean distance, but taxicab distance in Bedrock Edition.
These ticks include random ticking of crops, amethysts and such. The simulation distance is purely chunk based and has nothing to do with the player's position inside the chunk.
Pure redstone circuits continue to function infinitely far away, but break down where they interact with hoppers, pistons, observers, and anything else that needs tick updates to function.
Mob cap[edit | edit source]
Mobs in chunks outside a ticking area still count toward the per-mob population control caps as long as they were previously loaded within the simulation distance at some time.
Java Edition[edit | edit source]
Reason: Outdated. Chinese version (zh) has the latest version for reference.
Control[edit | edit source]
All worlds on the client share a simulation distance, and the distance can be modified anytime.
Ticking[edit | edit source]
Simulation distance defines a square region of chunks around the player where entities are ticked. Using distance of 6 for instance, entities may move normally within a 13×13 chunk column around the player chunk. One more chunk out, within a one-chunk-thick square frame surrounding this region, redstone may run, fluid may flow, and crop may grow (subject to normal chunk ticking rules). Beyond that nothing moves or changes. But these game aspects are also subject to chunk loading rules. See also Chunk#Ticking.
The simulation distance setting is ideally less than render distance because updating all entities within the simulation distance is more taxing on performance than the equivalent level of render distance.
Entity visibility[edit | edit source]
Not all entities within the loaded and visible chunks are displayed to the player. There are three criteria that hide entities from view. First, the server does not send any information about an entity to the client if the entity is beyond a certain distance from the player, controlled by "entity-broadcast-range-percentage" in the server.properties file. Second, the client does not render entities depending on both "Render distance" and "Entity distance" video settings. Apparently, render distance (in chunks) multiplied by a magic number (about 8.5 for mobs, 2 for items) and scaled by the "entity distance" percentage gives the radius in blocks for a sphere around the player beyond which entities are hidden. For example, using render distance 10 and 100% entity distance, a skeleton disappears from view if the player stands more than 85 blocks directly above it. The magic number varies slightly for different types of mobs, such as being larger for spiders and ghasts, even though ghasts still frequently attack player from beyond visibility range. Finally, the client has a hard visibility limit of 128 blocks horizontally, defining another circular column. Entities are displayed only if they are inside the intersection of this sphere and two cylinders.
History[edit | edit source]
[hide]Java Edition | |||||||
---|---|---|---|---|---|---|---|
1.18 | 21w38a | Added custom simulation distance. | |||||
21w44a | Now blocks and liquid are affected by simulation distance. | ||||||
The minimum simulation distance changed from 2 to 5. | |||||||
[hide]Bedrock Edition | |||||||
1.2.10 | beta 1.2.10.1 | Added custom simulation distance. | |||||
1.17.10 | beta 1.17.10.22 | Now the default simulation distance is 4 instead of being determined by device quality. | |||||
1.20.50 | Preview 1.20.50.20 | When the simulation distance is no less than 6, mobs 6 chunks away from player can now spawn.[1] |
Gallery[edit | edit source]
-
Simulation Distance control slider in Bedrock Edition.
Notelist[edit | edit source]
References[edit | edit source]
- ↑ MCPE-102197 — resolved as "Fixed".