Skip to content

Commit 2d14168

Browse files
committed
Add creaking heart block.
1 parent a6d65f3 commit 2d14168

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

chunky/src/java/se/llbit/chunky/block/MinecraftBlockProvider.java

+3
Original file line numberDiff line numberDiff line change
@@ -1153,6 +1153,9 @@ private static void addBlocks(Texture texture, String... names) {
11531153
tag.get("Properties").get("east").stringValue("none"),
11541154
tag.get("Properties").get("south").stringValue("none"),
11551155
tag.get("Properties").get("west").stringValue("none")));
1156+
addBlock("creaking_heart", (name, tag) -> new CreakingHeart(name,
1157+
tag.get("Properties").get("axis").stringValue("y"),
1158+
tag.get("Properties").get("creaking").stringValue("active")));
11561159
}
11571160

11581161
@Override
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package se.llbit.chunky.block.minecraft;
2+
3+
import se.llbit.chunky.block.AbstractModelBlock;
4+
import se.llbit.chunky.model.minecraft.LogModel;
5+
import se.llbit.chunky.resources.Texture;
6+
7+
public class CreakingHeart extends AbstractModelBlock {
8+
private final String description;
9+
10+
public CreakingHeart(String name, String axis, String creaking) {
11+
super(name, Texture.creakingHeartTop);
12+
this.model = new LogModel(
13+
axis,
14+
creaking.equals("disabled") ? Texture.creakingHeart : Texture.creakingHeartActive,
15+
creaking.equals("disabled") ? Texture.creakingHeartTop : Texture.creakingHeartTopActive
16+
);
17+
this.description = String.format("axis=%s, creaking=%s", axis, creaking);
18+
}
19+
20+
@Override
21+
public String description() {
22+
return description;
23+
}
24+
}

chunky/src/java/se/llbit/chunky/resources/Texture.java

+8
Original file line numberDiff line numberDiff line change
@@ -1548,6 +1548,14 @@ public class Texture {
15481548
public static final Texture paleMossCarpetSideSmall = new Texture();
15491549
@TexturePath("assets/minecraft/textures/block/pale_moss_carpet_side_tall")
15501550
public static final Texture paleMossCarpetSideTall = new Texture();
1551+
@TexturePath("assets/minecraft/textures/block/creaking_heart")
1552+
public static final Texture creakingHeart = new Texture();
1553+
@TexturePath("assets/minecraft/textures/block/creaking_heart_top")
1554+
public static final Texture creakingHeartTop = new Texture();
1555+
@TexturePath("assets/minecraft/textures/block/creaking_heart_active")
1556+
public static final Texture creakingHeartActive = new Texture();
1557+
@TexturePath("assets/minecraft/textures/block/creaking_heart_top_active")
1558+
public static final Texture creakingHeartTopActive = new Texture();
15511559

15521560
/** Banner base texture. */
15531561
public static final Texture bannerBase = new Texture();

0 commit comments

Comments
 (0)