Edit

Share via


Block Components Documentation - minecraft:item_visual

The description identifier of the geometry and material used to render the item of this block. Experimental toggles required: Upcoming Creator Features (in format versions before 1.21.50).

Note

This item requires a format version of at least 1.21.60.

Item Visual Properties

Name Default Value Type Description Example Values
geometry not set Array of objects [Required] The "minecraft:geometry" component that will be used for the item. Block Fabricator: "geometry.mikeamm_gwve_fabricator_in_hand"
material_instances not set Array of objects [Required] The "minecraft:material_instances" component that will be used for the item. Block Fabricator: {"*":{"texture":"mikeamm_gwve_fabricator_in_hand","render_method":"alpha_test"}}

Samples

"minecraft:item_visual": {
  "geometry": {
    "identifier": "minecraft:geometry.full_block"
  },
  "material_instances": {
    "*": {
      "texture": "dirt",
      "render_method": "opaque"
    }
  }
}

Block Fabricator

"minecraft:item_visual": {
  "geometry": "geometry.mikeamm_gwve_fabricator_in_hand",
  "material_instances": {
    "*": {
      "texture": "mikeamm_gwve_fabricator_in_hand",
      "render_method": "alpha_test"
    }
  }
}