@@ -33,6 +33,15 @@ public ModBlockStateProvider(PackOutput output, ExistingFileHelper exFileHelper)
33
33
Helpers .location ("block/brittle_ice_2" ),
34
34
Helpers .location ("block/brittle_ice_3" )
35
35
};
36
+ public static final ResourceLocation [] WOOD = new ResourceLocation [] {
37
+ Helpers .location ("block/wood" )
38
+ };
39
+ public static final ResourceLocation [] CONCRETE = new ResourceLocation [] {
40
+ Helpers .location ("block/concrete" )
41
+ };
42
+ public static final ResourceLocation [] GLAZED_TERRACOTTA = new ResourceLocation [] {
43
+ Helpers .location ("block/glazed_terracotta" )
44
+ };
36
45
37
46
@ Override
38
47
protected void registerStatesAndModels () {
@@ -99,6 +108,16 @@ protected void registerStatesAndModels() {
99
108
glazedTerracottaStates .partialState ().with (BlockStateProperties .HORIZONTAL_FACING , facing )
100
109
.addModels (new ConfiguredModel (models ().cubeAll ("glazed_terracotta" , Helpers .location ("block/glazed_terracotta" )), 0 , yRotation , false ));
101
110
}
111
+
112
+ //glistering_melon
113
+ BlockModelBuilder glisteringMelonModel = models ().cubeBottomTop (
114
+ "glistering_melon" ,
115
+ Helpers .location ("block/glistering_melon_side" ),
116
+ Helpers .location ("block/glistering_melon_side" ),
117
+ Helpers .location ("block/glistering_melon_top" )
118
+ );
119
+ simpleBlock (ModBlocks .GLISTERING_MELON .get (), glisteringMelonModel );
120
+
102
121
}
103
122
104
123
private void glowMucusModel (VariantBlockStateBuilder glowMucusStates , Direction facing , int layers , Function <Integer , ConfiguredModel > function ) {
0 commit comments