Visuals

AquaticCrates uses a system called "interactables" in order to visual the crates. Interactables support multiple types of visuals such as entity, block, modelengine model, item model.

Using new system you can have multiple visuals aka interactables spawned, so for example you can mix all visuals together or you can spawn mutliple blocks & such.

Here's a simple example for ModelEngine usage:

interactables:
  - type: MODELENGINE
    model: your_model_id

Block Visual

Basic

interactables:
  - type: BLOCK
    material: STONE

Advanced

interactables:
  - type: BLOCK
    material: OAK_SLAB
    slab-type: BOTTOM
    waterlogged: true

ModelEngine Visual

Item Model Visual

For more item settings, check out Item Settings

Last updated