9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-29 20:09:13 +00:00

添加旧版本unicode

This commit is contained in:
XiaoMoMi
2025-06-13 04:05:25 +08:00
parent a41a38236b
commit 38dcea3e1c

View File

@@ -117,6 +117,9 @@ public abstract class AbstractPackManager implements PackManager {
loadInternalList("models", "block/", VANILLA_MODELS::add);
loadInternalList("models", "item/", VANILLA_MODELS::add);
VANILLA_MODELS.add(Key.of("minecraft", "builtin/entity"));
for (int i = 0; i < 256; i++) {
VANILLA_TEXTURES.add(Key.of("minecraft", "font/unicode_page_" + String.format("%02x", i)));
}
}
private void loadInternalData(String path, BiConsumer<Key, JsonObject> callback) {