> For the complete documentation index, see [llms.txt](https://docs.superiormc.cn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.superiormc.cn/plotsquared-wiki/jie-gou-tu/jie-gou-tu-sheng-cheng.md).

# 结构图生成

## 一、介绍

PlotSquared 允许您设置在地皮世界生成地皮时在所有地皮区域内生成结构图. 效果图如下：

![](/files/jD7J1Vybtor7rvKDoC71)

## 二、设置

要想实现此功能，您需要遵从如下步骤：

* 站在一块地皮内并使用 `/plot schematic save` 指令保存结构图.
* 将 `/plugins/PlotSquared/schematics/` 文件夹下新生成的结构图文件复制到 `/plugins/PlotSquared/schematics/GEN_ROAD_SCHEMATIC/<地皮世界名称>/` 文件夹.
* 将结构图文件重命名为 plot，这样它的文件名称（包含后缀名）应该为 `plot.schematic 或者 plot.schem`.
* 打开 `setting.yml` 文件，并找到如下内容：

```
# 结构图配置
schematics:
  # 是否在地皮区域顶部生成结构图，如果为否则为在 Y=1 处.
  paste-on-top: true
```

将其修改为：

```
# 结构图配置
schematics:
  # 是否在地皮区域顶部生成结构图，如果为否则为在 Y=1 处.
  paste-on-top: false
```

* 重启服务器.
