同步官网文档8m_25d

This commit is contained in:
kwiilh
2025-08-25 18:36:29 +08:00
parent 4dc0ecf18d
commit 9e8855eeb4
5089 changed files with 8798 additions and 4799 deletions

View File

@@ -1,5 +1,5 @@
---
front:
front:
hard: 入门
time: 分钟
---
@@ -40,14 +40,14 @@ time: 分钟
可通过修改minecraft:overworld_surface字段来使用自定义方块生成区块。可参考[CustomBlocksMod](../../13-模组SDK编程/60-Demo示例.md#CustomBlocksMod)行为包的`netease_biomes\dm5`里面在自定义群系demo[CustomBiomesMod](../../13-模组SDK编程/60-Demo示例.md#CustomBiomesMod)中dm5维度的基础上进行修改将该维度的dm5_cold_beach、dm5_frozen_ocean、dm5_frozen_river、dm5_ice_plains、dm5_river几个群系的地表方块进行了替换。
<span id="shengyin"></span>
<span id="shengyin"></span>
## 声音
resource包中`blocks.json`配置方块的sound。
可以使用原版`sounds.json`中block_sounds里的类型。不支持添加自定义block_sounds类型
<span id="liangdu"></span>
<span id="liangdu"></span>
## 亮度
行为包中使用[minecraft:block_light_emission](./1-JSON组件.md#minecraft_block_light_emission)可将方块设置为光源。
@@ -56,10 +56,10 @@ resource包中`blocks.json`配置方块的sound。
[minecraft:block_light_absorption](./1-JSON组件.md#minecraft_block_light_absorption)可设置方块透光率值的范围为0-15
<span id="wajue"></span>
<span id="wajue"></span>
## 挖掘
挖掘的详细介绍可参考[官方wiki](https://minecraft-zh.gamepedia.com/挖掘)
挖掘的详细介绍可参考[官方wiki](https://zh.minecraft.wiki/w/挖掘)
挖掘时间可使用[minecraft:destroy_time](./1-JSON组件.md#minecraft_destroy_time)配置
@@ -67,7 +67,7 @@ resource包中`blocks.json`配置方块的sound。
可参考[CustomBlocksMod](../../13-模组SDK编程/60-Demo示例.md#CustomBlocksMod)的customblocks:customblocks_test_ore方块
<span id="duomianxiang"></span>
<span id="duomianxiang"></span>
## 多面向
行为包中使用[netease:face_directional](./1-JSON组件.md#netease_face_directional)配置。
@@ -102,7 +102,7 @@ resource包中`blocks.json`配置方块的sound。
| west | 4 |
| east | 5 |
<span id="zidingyiqunxiyanse"></span>
<span id="zidingyiqunxiyanse"></span>
## 自定义方块及自定义方块模型的群系颜色
@@ -236,15 +236,15 @@ resource包中`blocks.json`配置方块的sound。
"customblocks:customblocks_test_face4_tinted": {
"textures": {
// 这个贴图使用了带colormap的贴图(colormap在textures/terrain_texture.json中指定), 该面的颜色将会随群系的变化而变化
"down": "customblocks:customblocks_test_face4_front_tinted",
"down": "customblocks:customblocks_test_face4_front_tinted",
"up": "customblocks:customblocks_test_face4_front_not_tinted",
// 这个贴图使用了带colormap的贴图(colormap在textures/terrain_texture.json中指定), 该面的颜色将会随群系的变化而变化
"north": "customblocks:customblocks_test_face4_top_tinted",
"north": "customblocks:customblocks_test_face4_top_tinted",
"south": "customblocks:customblocks_test_face4_top_sides_not_tinted",
"west": "customblocks:customblocks_test_face4_top_sides_not_tinted",
// 这个贴图使用了带colormap的贴图(colormap在textures/terrain_texture.json中指定)
// 该面的颜色将会随群系的变化而变化且在不同的维度中会使用不同的colormap的贴图
"east": "customblocks:customblocks_test_face4_top_tinted_by_dimension"
"east": "customblocks:customblocks_test_face4_top_tinted_by_dimension"
},
"sound": "stone"
}