forked from FabricMC/fabric
Add nonOpaque to FabricBlockSettings (#434)
* add nonOpaque FabricBlockSettings builder method * module version bump (0.1.2 -> 0.1.3)
This commit is contained in:
parent
264dbbc635
commit
e4c9a9c3af
2 changed files with 6 additions and 1 deletions
|
@ -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')
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue