Difference between revisions of "Translations:TrainCarts/Signs/Property/23/zh-cn"

From BergerHealer Wiki
Jump to navigation Jump to search
(Created page with "{| class="wikitable" |- ! 值 ! 释义 |- | false | 禁用区块加载。列车周围没有玩家时会被卸载。 |- | true | 启用区块加载,以列车所在区块为...")
(No difference)

Revision as of 18:50, 16 June 2025

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (TrainCarts/Signs/Property)
{| class="wikitable"
|-
! Value
! Description
|-
| false
| Disables the chunk loader. The train will now unload if no player is nearby.
|-
| true
| Enables the chunk loader with a radius of 5x5 full entity-ticked chunks. In effect this loads a 9x9 area of chunks. Equivalent to <code>full 2</code>
|-
| minimal 0
| Enables the chunk loader, but only loads the chunks the train is inside of. Does not simulate entities or redstone (except for the train itself). This has the most performance and is suitable for long-distance travel.
|-
| redstone 2
| Enables the chunk loader, loading and simulating a 5x5 block-ticked (redstone simulated) chunks, and an outer 7x7 layer of non-simulated chunks. Useful at stations when redstone has to be simulated, but entities at these stations don't need to be ticked.
|-
| full 10
| Enables the chunk loader, loading a 21x21 area of chunks and simulating entities inside. A 23x23 layer around it is block-ticked, and another 25x25 layer around that is not simulated. So this is actually loading 25x25 chunks. If you're looking for a chunk loader that acts like a Player, this is it.
|}
释义
false 禁用区块加载。列车周围没有玩家时会被卸载。
true 启用区块加载,以列车所在区块为中央区块,5×5范围的区块以“方块计算”等级加载。实际会加载9×9范围的区块。与full 2等效
minimal 0 启用区块加载,但只加载列车所在区块。实体(除了列车自己)和红石不会计算。性能最高,适合长途旅行。
redstone 2 启用区块加载,以列车所在区块为中央区块,5×5范围的区块以“方块计算”等级加载、7×7范围的区块以“完全加载”等级加载。适用于需要红石计算但无需实体计算的站点。
full 10 启用区块加载,以列车所在区块为中央区块,21×21范围的区块“实体计算”等级加载、23×23范围的区块以“方块计算”等级加载,25×25范围的区块以“完全加载”等级加载。因此这实际加载了25×25范围的区块。若你想要类似于玩家的区块加载行为,这就是你要的。