搬运一批Bedrock wiki内容,完善翻译
This commit is contained in:
47
docs/wiki/nbt/structure-limits.md
Normal file
47
docs/wiki/nbt/structure-limits.md
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
title: Extending Structure Limits
|
||||
category: Tutorials
|
||||
mentions:
|
||||
- MedicalJewel105
|
||||
tags:
|
||||
- easy
|
||||
---
|
||||
|
||||
[structure]: /assets/images/nbt/structure.png
|
||||
[int]: /assets/images/nbt/int.png
|
||||
[list]: /assets/images/nbt/list.png
|
||||
[compound]: /assets/images/nbt/compound.png
|
||||
[string]: /assets/images/nbt/string.png
|
||||
|
||||
:::warning DEPRECATED
|
||||
This method no longer works after 1.20.50 update.
|
||||
:::
|
||||
|
||||
By default, Minecraft doesn't allow you to save structures that are more than 64x255x64 in size.
|
||||
In this guide you will learn how to extend structure box size for structure blocks.
|
||||
|
||||
## Editing NBT
|
||||
|
||||
1. Put a structure block into structure and export it.
|
||||
2. Open your structure with NBT editor (NBT Studio in our case) and find your structure block.
|
||||
|
||||
If the only block you have in your structure is structure block, you will find its data here:
|
||||
|
||||
![][structure] extending_structure_block.mcstructure
|
||||
> ![][compound] structure
|
||||
> > ![][compound] palette
|
||||
> > > ![][compound] default
|
||||
> > > > ![][compound] block_position_data
|
||||
> > > > > ![][compound] 0
|
||||
|
||||

|
||||
|
||||
3. Set `xStructureSize`, `yStructureSize` and `zStructureSize` values to what you want.
|
||||
4. Save the structure and load it in game.
|
||||
|
||||

|
||||
|
||||
## Tips
|
||||
|
||||
You can get this structure block to your inventory by pressing mouse scroll button while holding Ctrl.
|
||||
It is recommended to use structure loading animations (Place by Block) when loading a huge structure. This will minimize lags.
|
||||
Reference in New Issue
Block a user