Skip to content

Commit 80af817

Browse files
committed
🚧 Add support for multi-versioned resource pack exporting
⚠️ This push does not include multi-versioned data pack exporting. Blueprints exported via this branch of the plugin will not include any data pack files. - Made "Target Minecraft Version" an array of `MinecraftVersion` strings. - Updated resource pack compiler to handle generating multiple resource packs, and exporting them into different overlay folders in the main resource pack.
1 parent 21d1290 commit 80af817

File tree

25 files changed

+960
-567
lines changed

25 files changed

+960
-567
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"title": "Animated Java",
55
"icon": "icon.svg",
66
"description": "A Blockbench plugin that makes complex animation a breeze in Minecraft: Java Edition.",
7-
"version": "1.6.4",
7+
"version": "1.6.5",
88
"min_blockbench_version": "4.12.0",
99
"variant": "desktop",
1010
"tags": [
@@ -102,6 +102,7 @@
102102
"prettier": "^2.5.1",
103103
"svelte": "^3.55.1",
104104
"svelte-awesome-color-picker": "^3.0.0-beta.7",
105+
"svelte-multiselect": "^11.0.0-rc.1",
105106
"svelte-preprocess": "^5.0.1",
106107
"svelte-preprocess-esbuild": "^3.0.1",
107108
"typescript": "^4.5.5",

src/blueprintSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const defaultValues = {
1212
enable_plugin_mode: false,
1313
resource_pack_export_mode: 'raw' as ExportMode,
1414
data_pack_export_mode: 'raw' as ExportMode,
15-
target_minecraft_version: '1.21.2' as MinecraftVersion,
15+
target_minecraft_versions: ['1.21.4'] as MinecraftVersion[],
1616
// Resource Pack Settings
1717
display_item: 'minecraft:white_dye',
1818
custom_model_data_offset: 0,

0 commit comments

Comments
 (0)