mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-23 08:08:02 -05:00
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"
|
archivesBaseName = "fabric-object-builders"
|
||||||
version = getSubprojectVersion(project, "0.1.2")
|
version = getSubprojectVersion(project, "0.1.3")
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile project(path: ':fabric-api-base', configuration: 'dev')
|
compile project(path: ':fabric-api-base', configuration: 'dev')
|
||||||
|
|
|
@ -165,6 +165,11 @@ public class FabricBlockSettings {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public FabricBlockSettings nonOpaque() {
|
||||||
|
delegate.nonOpaque();
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
public FabricBlockSettings sounds(BlockSoundGroup group) {
|
public FabricBlockSettings sounds(BlockSoundGroup group) {
|
||||||
BlockSettingsExtensions.sounds(delegate, group);
|
BlockSettingsExtensions.sounds(delegate, group);
|
||||||
return this;
|
return this;
|
||||||
|
|
Loading…
Reference in a new issue