9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-21 16:09:26 +00:00

bump sparrow util

This commit is contained in:
XiaoMoMi
2025-03-17 19:46:41 +08:00
parent cb59257755
commit efbf273d65
4 changed files with 29 additions and 2 deletions

View File

@@ -33,9 +33,31 @@ templates#models#block:
textures:
"end": "{end_texture}"
"side": "{side_texture}"
# template: default:model/cube
# arguments:
# model: model_path
# particle_texture: particle_texture_path
# down_texture: down_texture_path
# up_texture: up_texture_path
# north_texture: north_texture_path
# east_texture: east_texture_path
# south_texture: south_texture_path
# west_texture: west_texture_path
default:model/cube:
path: "{model}"
generation:
parent: "minecraft:block/cube_column"
textures:
"particle": "minecraft:block/custom/block_particle"
"down": "minecraft:block/custom/block_down"
"up": "minecraft:block/custom/block_up"
"north": "minecraft:block/custom/block_north"
"east": "minecraft:block/custom/block_east"
"south": "minecraft:block/custom/block_south"
"west": "minecraft:block/custom/block_west"
# 2D items
templates#models#generated:
templates#models#2d:
# template: default:model/generated
# arguments:
# model: model_path

View File

@@ -0,0 +1,4 @@
package net.momirealms.craftengine.core.item.recipe;
public class CustomSmithingTransformRecipe {
}

View File

@@ -17,6 +17,7 @@ public class RecipeTypes {
public static final Key SMOKING = Key.of("minecraft:smoking");
public static final Key CAMPFIRE_COOKING = Key.of("minecraft:campfire_cooking");
public static final Key STONE_CUTTING = Key.of("minecraft:stone_cutting");
public static final Key SMITHING_TRANSFORM = Key.of("minecraft:smithing_transform");
static {
register(SHAPED, CustomShapedRecipe.FACTORY);

View File

@@ -38,7 +38,7 @@ geantyref_version=1.3.16
zstd_version=1.5.6-9
commons_io_version=2.17.0
sparrow_nbt_version=0.3
sparrow_util_version=0.22
sparrow_util_version=0.23
fastutil_version=8.5.15
netty_version=4.1.119.Final
joml_version=1.10.8