feat(validation): add /tiedup validate client command for GLB diagnostics

This commit is contained in:
NotEvil
2026-04-17 01:51:58 +02:00
parent ca4cbcad12
commit 3f6e04edb0
2 changed files with 145 additions and 0 deletions

View File

@@ -144,5 +144,17 @@ public final class GltfClientSetup {
GltfSkinCache.removeEntity(event.getEntity().getId());
}
}
@SubscribeEvent
public static void onRegisterClientCommands(
net.minecraftforge.client.event.RegisterClientCommandsEvent event
) {
com.tiedup.remake.commands.ValidateGlbCommand.register(
event.getDispatcher()
);
LOGGER.info(
"[GltfPipeline] Client command /tiedup validate registered"
);
}
}
}