diff --git a/docs-java/start/basic/_images/command-1.png b/docs-java/start/basic/_images/command-1.png new file mode 100644 index 0000000000..98802448ce Binary files /dev/null and b/docs-java/start/basic/_images/command-1.png differ diff --git a/docs-java/start/basic/_images/command-2.png b/docs-java/start/basic/_images/command-2.png new file mode 100644 index 0000000000..8113396a0b Binary files /dev/null and b/docs-java/start/basic/_images/command-2.png differ diff --git a/docs-java/start/basic/_images/command-3.png b/docs-java/start/basic/_images/command-3.png new file mode 100644 index 0000000000..30f0544c96 Binary files /dev/null and b/docs-java/start/basic/_images/command-3.png differ diff --git a/docs-java/start/basic/_images/command-4.png b/docs-java/start/basic/_images/command-4.png new file mode 100644 index 0000000000..b10773880e Binary files /dev/null and b/docs-java/start/basic/_images/command-4.png differ diff --git a/docs-java/start/basic/_images/妙妙比喻.png b/docs-java/start/basic/_images/妙妙比喻.png new file mode 100644 index 0000000000..bfadb761b7 Binary files /dev/null and b/docs-java/start/basic/_images/妙妙比喻.png differ diff --git a/docs-java/start/basic/server-management-command.md b/docs-java/start/basic/server-management-command.md index a3ed355671..3a99807726 100644 --- a/docs-java/start/basic/server-management-command.md +++ b/docs-java/start/basic/server-management-command.md @@ -1,6 +1,6 @@ --- title: 常用服务器管理指令 -sidebar_position: 8 +sidebar_position: 10 --- # 常用服务器管理指令 diff --git a/docs-java/start/basic/what-is-namespace.md b/docs-java/start/basic/what-is-namespace.md new file mode 100644 index 0000000000..5d514600ad --- /dev/null +++ b/docs-java/start/basic/what-is-namespace.md @@ -0,0 +1,63 @@ +--- +title: 什么是命名空间? +sidebar_position: 8 +--- + +## 概念 + +> 命名空间ID(Namespaced identifier,或译为命名空间标识符)、资源路径(Resource location)、资源标识符(Resource identifier)或命名空间字符串(Namespaced string)是用来指明和识别游戏中特定对象而又能避免潜在的歧义和冲突的一种方式。 + +如果比喻一下的话,就像是 + +![](_images/妙妙比喻.png) + +你的 "桌面" 上有几个命名空间(文件夹),这几个命名空间不能重名,命名空间里的东西可以重名 + +对于重名的 ID,可以用命名空间加以区分 + +格式通常是 `命名空间:ID` ,例如: `minecraft:tp` + +例如,在上面的比喻中: + +- 左侧的 IDa.txt 表示为 命名空间A:IDa.txt +- 右侧的 IDa.txt 表示为 命名空间B:IDa.txt + +## 物品 + +原版物品的命名空间 `minecraft` 可不写,会自动补全,例如 `minecraft:stone` == `stone` + +但是 mod 物品你不写也会补 `minecraft`,导致找不到物品 + +所以,如果你想在菜单等地方使用来自 mod 的物品,应该写 `mod命名空间:物品ID` + +## 命令 + +命令存在 **优先级** 的概念 + +例如,当你安装 EssentialsX 之后,原版 tp 命令会被覆盖 + +![](_images/command-1.png) + +而同时安装 EssentialsX 和 HuskHomes 之后,使用 tp 是 HuskHomes 提供的 + +![](_images/command-2.png) + +如果此时你想使用 EssentialsX 的而不是 HuskHomes 的,可以使用命名空间 + +![](_images/command-3.png) + +当然,你也可以使用原版命令,原版命名空间是 `minecraft` + +![](_images/command-4.png) + +通常,你作为用户不能调整优先级,这是插件开发者才能做的事 + +通常,插件作者会使用插件名字作为命名空间的名字 + +## 资源包 + +去学资源包基础而不是让我教你这个 + +## 参考 + +https://zh.minecraft.wiki/w/%E5%91%BD%E5%90%8D%E7%A9%BA%E9%97%B4ID