We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d285985 commit fac53dcCopy full SHA for fac53dc
src/blueprintFormat.ts
@@ -150,6 +150,7 @@ export interface IBlueprintFormatJSON {
150
backgrounds?: Record<string, any>
151
}
152
153
+//region > Convert
154
export function convertToBlueprint() {
155
// Convert the current project to a Blueprint
156
Project!.save_path = ''
@@ -162,6 +163,9 @@ export function convertToBlueprint() {
162
163
animation.createUniqueName(Blockbench.Animation.all.filter(a => a !== animation))
164
animation.name = toSafeFuntionName(animation.name)
165
166
+ for (const cube of Cube.all) {
167
+ cube.setUVMode(false)
168
+ }
169
170
171
export function getDefaultProjectSettings(): ModelProject['animated_java'] {
0 commit comments