Hi, I'm looking to extend some custom blocks from another mod's existing models and textures, but am running into an issue in regards to bounding box and blockface culling. My custom block is on the right, and the one from the mod is on the left. Here is it's model.json:
{
"parent": "geocluster:block/ore_sample",
"textures": {
"particle": "minecraft:block/stone",
"ore": "ad_astra:block/moon_ore_desh"
}
}```
Here's it's definition in startup:
```js
StartupEvents.registry('block', e => {
e.create('desh_ore_sample')
.material('stone')
.hardness('0.0')
.displayName('Desh Sample')
.requiresTool(false);
});```
There are two main issues I'm facing.
1. The bounding box when highlighting it is a full block rather than the smaller box from the mod. Is there a way to change that in KubeJS?
2. The blockface culling. Is there a way to stop that?