File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,8 @@ export interface IBlueprintFormatJSON {
145
145
}
146
146
147
147
export function convertToBlueprint ( ) {
148
- console . error ( 'Blueprint conversion is currently unsupported!' )
148
+ // Convert the current project to a Blueprint
149
+ // NOTE - Nothing needs to be done here yet. The default functionality is sufficient.
149
150
}
150
151
151
152
export function getDefaultProjectSettings ( ) : ModelProject [ 'animated_java' ] {
@@ -539,7 +540,7 @@ export const BLUEPRINT_FORMAT = new Blockbench.ModelFormat({
539
540
540
541
Project . variants ??= [ ]
541
542
Project . last_used_export_namespace = Project . animated_java . export_namespace
542
- if ( newModel ) {
543
+ if ( newModel || Project . variants . length === 0 ) {
543
544
new Variant ( 'Default' , true )
544
545
}
545
546
const updateBoundingBoxIntervalId = setInterval ( ( ) => {
Original file line number Diff line number Diff line change 11
11
"show_bounding_box": false,
12
12
"auto_bounding_box": true,
13
13
"bounding_box": [95, 32],
14
- "enable_plugin_mode": false ,
14
+ "enable_plugin_mode": true ,
15
15
"resource_pack_export_mode": "raw",
16
16
"data_pack_export_mode": "raw",
17
17
"display_item": "minecraft:white_dye",
You can’t perform that action at this time.
0 commit comments