updated a lot of the pack

This commit is contained in:
xSquishyLiam
2025-09-26 17:05:44 +01:00
parent 983f2fe492
commit 2d6ebab498
4 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ public class AnimationController {
public void load(GeyserModelEnginePackGenerator extension, Animation animation, Entity entity) { public void load(GeyserModelEnginePackGenerator extension, Animation animation, Entity entity) {
JsonObject root = new JsonObject(); JsonObject root = new JsonObject();
json = root; json = root;
root.addProperty("format_version", "1.10.0"); root.addProperty("format_version", "1.20.0");
JsonObject animationControllers = new JsonObject(); JsonObject animationControllers = new JsonObject();
root.add("animation_controllers", animationControllers); root.add("animation_controllers", animationControllers);

View File

@@ -27,7 +27,7 @@ public class Entity {
public static final String TEMPLATE = """ public static final String TEMPLATE = """
{ {
"format_version": "1.10.0", "format_version": "1.20.0",
"minecraft:client_entity": { "minecraft:client_entity": {
"description": { "description": {
"identifier": "%namespace%:%entity_id%", "identifier": "%namespace%:%entity_id%",

View File

@@ -12,7 +12,7 @@ public class PackManifest {
"description": "GeyserModelEngine For Geyser", "description": "GeyserModelEngine For Geyser",
"uuid": "%uuid-1%", "uuid": "%uuid-1%",
"version": [0, 0, 1], "version": [0, 0, 1],
"min_engine_version": [ 1, 21, 100 ] "min_engine_version": [1, 21, 100]
}, },
"modules": [ "modules": [
{ {

View File

@@ -24,7 +24,7 @@ public class RenderController {
List<String> se = new ArrayList<>(bones.keySet()); List<String> se = new ArrayList<>(bones.keySet());
Collections.sort(se); Collections.sort(se);
JsonObject root = new JsonObject(); JsonObject root = new JsonObject();
root.addProperty("format_version", "1.8.0"); root.addProperty("format_version", "1.20.0");
JsonObject renderControllers = new JsonObject(); JsonObject renderControllers = new JsonObject();
root.add("render_controllers", renderControllers); root.add("render_controllers", renderControllers);