Added a parallel hatch to the Modern Industrialization mod. Added compatibility with KubeJS, added the ability to customize parallel hatches, and when you customize the controller, if there is a custom casing, the casing model needs to be registered in order for it to change accordingly. 在现代工业化模组中添加了一个平行舱口。 增加了与 KubeJS 的兼容性,增加了自定义平行舱口的能力,而且当你自定义控制器时,如果有自定义外壳,必须注册外壳模型才能相应更改。 编辑 .minecraft/config/bingxing/extra_hatches.json 文件,在 hatches 数组中添加新条目 { "hatches": [ { "id": "simple_parallel_hatch", "max_parallel": 2, "display_name": "Simple Parallel Hatch", "casing": "modern_industrialization:iron", "texture_folder": "simple" }, { "id": "insane_parallel_hatch", "max_parallel": 9999, "display_name": "Insane Parallel Hatch", "casing": "modern_industrialization:quantum", "texture_folder": "insane" } ] } 编辑 .minecraft/config/bingxing/casing_overrides.json 文件 { "overrides": [ { "controller_id": "modern_industrialization:ksrl", "casing_id": "modern_industrialization:chiseled_stone_bricks_casing" }, { "controller_id": "modern_industrialization:zhuanhuan_qi", "casing_id": "modern_industrialization:smooth_stone_casing" } ] }