NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/Slab.java
2020-02-07 15:22:30 +01:00

34 lines
1.1 KiB
Java

package de.ellpeck.naturesaura.blocks;
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import de.ellpeck.naturesaura.reg.IModItem;
import de.ellpeck.naturesaura.reg.ModRegistry;
import net.minecraft.block.SlabBlock;
import net.minecraft.util.ResourceLocation;
public class Slab extends SlabBlock implements IModItem, ICustomBlockState {
public final String textureName;
private final String baseName;
public Slab(String baseName, String textureName, Properties properties) {
super(properties);
this.baseName = baseName;
this.textureName = textureName;
ModRegistry.add(this);
}
@Override
public String getBaseName() {
return this.baseName;
}
@Override
public void generateCustomBlockState(BlockStateGenerator generator) {
ResourceLocation texture = generator.modLoc("block/" + this.textureName);
generator.models().cubeAll(this.getBaseName() + "_double", texture);
generator.slabBlock(this, generator.modLoc(this.getBaseName() + "_double"), texture);
}
}