Skip to content

Interface BlockModel

The block model json format

🏷️ Properties

ambientocclusion optional

ts
ambientocclusion: boolean

Defined in: packages/resourcepack/format.ts:30

display optional

ts
display: Display

Holds the different places where item models are displayed.

Defined in: packages/resourcepack/format.ts:34

elements optional

ts
elements: Element[]

Contains all the elements of the model. they can only have cubic forms. If both "parent" and "elements" are set, the "elements" tag overrides the "elements" tag from the previous model.

Defined in: packages/resourcepack/format.ts:49

overrides optional

ts
overrides: Object[]

Determines cases which a different model should be used based on item tags. All cases are evaluated in order from top to bottom and last predicate that mathches will override. However, overrides are ignored if it has been already overriden once, for example this avoids recursion on overriding to the same model.

Defined in: packages/resourcepack/format.ts:55

parent optional

ts
parent: string

For Block:

Loads a different model from the given path, starting in assets/minecraft/models. If both "parent" and "elements" are set, the "elements" tag overrides the "elements" tag from the previous model. Can be set to "builtin/generated" to use a model that is created out of the specified icon. Note that only the first layer is supported, and rotation can only be achieved using block states files.

For Item:

Loads a different model from the given path, starting in assets/minecraft/models. If both "parent" and "elements" are set, the "elements" tag overrides the "elements" tag from the previous model. Can be set to "builtin/generated" to use a model that is created out of the specified icon. Can be set to "builtin/entity" to load a model from an entity file. As you can not specify the entity, this does not work for all items (only for chests, ender chests, mob heads, shields and banners). Needs to be set to "builtin/compass" or "builtin/clock" for the compass and the clock.

Defined in: packages/resourcepack/format.ts:28

textures optional

ts
textures: Object

Holds the textures of the model. Each texture starts in assets/minecraft/textures or can be another texture variable.

Defined in: packages/resourcepack/format.ts:38