Skip to content

Commit 07bdca3

Browse files
committed
Restructure DB Export UI
1 parent 19c414f commit 07bdca3

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

Blender/coa_tools/operators/dragonbones_exporter/export_dragonbones.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,17 +1327,16 @@ def draw(self, context):
13271327
col.label(text="Atlas Settings:")
13281328
row = col.row()
13291329
row.prop(self.scene, "coa_atlas_mode", expand=True)
1330-
col.prop(self.scene, "coa_sprite_scale", slider=True)
13311330
if self.scene.coa_atlas_mode == "LIMIT_SIZE":
13321331
subcol = col.column(align=True)
1333-
subcol.label(text="Texture Atlas Size:")
13341332
subcol.prop(self.scene, "coa_atlas_resolution_x", text="X")
13351333
subcol.prop(self.scene, "coa_atlas_resolution_y", text="Y")
1334+
col.prop(self.scene, "coa_sprite_scale", slider=True)
13361335
col.prop(self.scene, "coa_atlas_island_margin")
1337-
col.label(text="Animation Settings:")
1338-
col.prop(self.scene, "coa_export_bake_anim")
1336+
subrow = col.row(align=True)
1337+
subrow.prop(self.scene, "coa_export_bake_anim")
13391338
if self.scene.coa_export_bake_anim:
1340-
col.prop(self.scene, "coa_export_bake_steps")
1339+
subrow.prop(self.scene, "coa_export_bake_steps")
13411340
col.prop(self.scene, "coa_minify_json")
13421341
op = col.operator("coa_tools.export_dragon_bones")
13431342

Sample Files/stip.blend

-18.7 KB
Binary file not shown.

Sample Files/stip.blend1

1.76 MB
Binary file not shown.

0 commit comments

Comments
 (0)