mirror of
https://github.com/Xiao-MoMi/craft-engine.git
synced 2025-12-21 07:59:19 +00:00
bump sparrow util
This commit is contained in:
@@ -33,9 +33,31 @@ templates#models#block:
|
|||||||
textures:
|
textures:
|
||||||
"end": "{end_texture}"
|
"end": "{end_texture}"
|
||||||
"side": "{side_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
|
# 2D items
|
||||||
templates#models#generated:
|
templates#models#2d:
|
||||||
# template: default:model/generated
|
# template: default:model/generated
|
||||||
# arguments:
|
# arguments:
|
||||||
# model: model_path
|
# model: model_path
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package net.momirealms.craftengine.core.item.recipe;
|
||||||
|
|
||||||
|
public class CustomSmithingTransformRecipe {
|
||||||
|
}
|
||||||
@@ -17,6 +17,7 @@ public class RecipeTypes {
|
|||||||
public static final Key SMOKING = Key.of("minecraft:smoking");
|
public static final Key SMOKING = Key.of("minecraft:smoking");
|
||||||
public static final Key CAMPFIRE_COOKING = Key.of("minecraft:campfire_cooking");
|
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 STONE_CUTTING = Key.of("minecraft:stone_cutting");
|
||||||
|
public static final Key SMITHING_TRANSFORM = Key.of("minecraft:smithing_transform");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
register(SHAPED, CustomShapedRecipe.FACTORY);
|
register(SHAPED, CustomShapedRecipe.FACTORY);
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ geantyref_version=1.3.16
|
|||||||
zstd_version=1.5.6-9
|
zstd_version=1.5.6-9
|
||||||
commons_io_version=2.17.0
|
commons_io_version=2.17.0
|
||||||
sparrow_nbt_version=0.3
|
sparrow_nbt_version=0.3
|
||||||
sparrow_util_version=0.22
|
sparrow_util_version=0.23
|
||||||
fastutil_version=8.5.15
|
fastutil_version=8.5.15
|
||||||
netty_version=4.1.119.Final
|
netty_version=4.1.119.Final
|
||||||
joml_version=1.10.8
|
joml_version=1.10.8
|
||||||
|
|||||||
Reference in New Issue
Block a user