Add nonOpaque to FabricBlockSettings (#434)

* add nonOpaque FabricBlockSettings builder method

* module version bump (0.1.2 -> 0.1.3)
This commit is contained in:
Draylar 2019-11-24 04:54:48 -06:00 committed by modmuss50
parent 264dbbc635
commit e4c9a9c3af
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,5 @@
archivesBaseName = "fabric-object-builders"
version = getSubprojectVersion(project, "0.1.2")
version = getSubprojectVersion(project, "0.1.3")
dependencies {
compile project(path: ':fabric-api-base', configuration: 'dev')

View file

@ -165,6 +165,11 @@ public class FabricBlockSettings {
return this;
}
public FabricBlockSettings nonOpaque() {
delegate.nonOpaque();
return this;
}
public FabricBlockSettings sounds(BlockSoundGroup group) {
BlockSettingsExtensions.sounds(delegate, group);
return this;