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
interactables:
- type: MODELENGINE
model: your_model_id
Item Model Visual
interactables:
- type: ITEM_MODEL
item-transform: NONE
scale: "1;1;1"
billboard: FIXED
model: your_model_id
item:
material: STONE
For more item settings, check out Item Settings
Last updated