CIT 盔甲纹理

手动创建 Optifine 自定义盔甲纹理

1.16 及以下版本的自定义纹理盔甲

如果你想为盔甲添加自定义纹理而不仅仅是自定义颜色,你可以使用 Optifine

这是一个适用于 1.16 及以下版本客户端的旧方法。 1.17+ 的新方法不需要 Optifine

自定义纹理盔甲

第一步

创建你的自定义命名空间(如果尚未创建),请按照本教程操作。 在本教程中,我的命名空间名为 mystuff

第二步

物品栏物品创建自定义纹理。我将它们放在文件夹:contents/mystuff/resourcepack/mystuff/textures/item/example_1

第三步

穿戴中的盔甲创建自定义纹理。你可以在这里获取示例:

编辑纹理(使用 Paint.NET、Photoshop、GIMP 或类似程序)并保存layer_1.pnglayer_2.png

第四步

创建 optifine 文件夹,这是我们放置穿戴中的盔甲自定义纹理的地方:contents/mystuff/resourcepack/minecraft/optifine/

第五步

现在将之前创建的穿戴中的盔甲纹理(layer_1.pnglayer_2.png)保存到此文件夹:contents/mystuff/resourcepack/minecraft/optifine/cit/mystuff/armors/example_1/entity/

所以你会有这样的结构:

第六步

创建这些文件:boots.propertieschestplate.propertieshelmet.propertiesleggings.properties,并放在 contents/mystuff/resourcepack/minecraft/optifine/cit/mystuff/armors/example_1/entity/

每个文件必须包含以下内容:

nbt.itemsadder.namespace=mystuff
nbt.itemsadder.id=example_chestplate_1

type=armor
items=diamond_chestplate
texture.diamond_layer_1=layer_1
texture.diamond_layer_2=layer_2

对于每个 .properties 文件,你需要更改第一行,设置为你的命名空间而不是 "mystuff",第二行设置为你的物品 id第五行设置为物品类型diamond_leggingsdiamond_boots 等)

现在你应该有这样的结构:

第七步

创建一个文件来包含这个自定义盔甲,以便更好地组织它。将其命名为 example_1.yml放置在你的命名空间中,在本例中为:contents/mystuff/configs/example_1.yml

第八步

添加内容.yml 文件中。如你所见,我决定基于 Minecraft 的钻石盔甲,并且我没有指定任何颜色,因为我不需要为其着色,Optifine 会为其应用纹理。

info:
  namespace: mystuff
items:
  example_helmet_1:
    display_name: Example
    permission: example_helmet_1
    resource:
      generate: true
      material: DIAMOND_HELMET
      textures:
      - item/example_1/helmet.png
    durability:
      max_custom_durability: 275
    specific_properties:
      armor:
        slot: head
    attribute_modifiers:
      head:
        armor: 9
        armorToughness: 1
  example_chestplate_1:
    display_name: Example
    permission: example_chestplate_1
    resource:
      generate: true
      material: DIAMOND_CHESTPLATE
      textures:
      - item/example_1/chestplate.png
    durability:
      max_custom_durability: 400
    specific_properties:
      armor:
        slot: chest
    attribute_modifiers:
      chest:
        armor: 7
        armorToughness: 1
  example_leggings_1:
    display_name: Example
    permission: example_leggings_1
    resource:
      generate: true
      material: DIAMOND_LEGGINGS
      textures:
      - item/example_1/leggings.png
    durability:
      max_custom_durability: 375
    specific_properties:
      armor:
        slot: legs
    attribute_modifiers:
      legs:
        armor: 5
        armorToughness: 1
  example_boots_1:
    display_name: Example
    permission: example_boots_1
    resource:
      generate: true
      material: DIAMOND_BOOTS
      textures:
      - item/example_1/boots.png
    durability:
      max_custom_durability: 325
    specific_properties:
      armor:
        slot: feet
    attribute_modifiers:
      feet:
        armor: 3
        armorToughness: 1

完成!

注意事项:

Last updated

Was this helpful?