I have been trying to make a wood slab block and I've noticed when I looked in block base you have fences, walls and solid blocks but you don't have slabs so its been a pain to not be able to make slabs I hope you are able to make this feature and would be happy to see it happen if you do make this feature it will be really helpful to me or anyone elese who has this problem thank you and have a good day
Issue comments
Some issues with using custom 3d models is that you can't replicate slabs perfectly. For example, you can't recreate the exact placement without custom code. Additionally, slabs have a "half" state property (upper and lower), which also determines block face shapes (again, this would require custom code).
If I wanted to suggest more block bases, should I open a new ticket or could this one be used for all block bases (something like the "custom brewing, anvil, ... recipes" ticket)?
Not sure if it can be helpful, but I made a custom class for fence gates (1.12)
Custom class
Blockstates json
Block / Item json
With the leaves Klemen you really need to add Logs too. I'm assuming the block base for leaves has the "extends LeavesBlock" but the custom leaves will just decay when put next to the custom logs because the custom logs need to have the "extends LogBlock" and a minecaft #logs tag from the new 1.14.4 tag system and the leaves also need to be in the #leaves tags in order to fully work.
Logs as a base are not really necessary as one can just tag custom logs with log tag and leaves will check such blocks in order to not decay.
For 1.12.2, block needs this piece of code to be detected as a log:
@Override public boolean canSustainLeaves(IBlockState state, IBlockAccess world, BlockPos pos){
return true;
}
but as 1.14.4 does not use this system anymore (uses tags instead) there probably won't be an UI for this for 1.12.2.
klemen add these blockbases:pressure plate,button,ladder,player and mob head,fence gate,normal glass,iron bars.
Also add arrow element to create arrows shooting by vanilla bow.
Now i can create my favourite mod call doors mod,but i'm busy because i create other mod call more bosses mod.
add entity immune to explosion
this is 99% possible, I can think of quite a few solutions right now like checking for the damage source on entity hurt event and canceling the event if it is an explosion
first add only arrows shooting by vanilla bow
I can't think of any solution for this off of my head but I don't think forge provides hooks for this kind of stuff so it would be hard to implement(if it is possible at all)
to the next snapshot add more blockbase
care to explain more?
Also please don't post in that demanding tone, developers have their own lives to tend to and the way you are speaking is honestly quite rude
You can already make slabs using custom 3D model and bounding box setting, but we will consider adding slabs as a base down the road too.