Skip to content

Commit

Permalink
PSA sequences are now selected by default
Browse files Browse the repository at this point in the history
There were multiple bug reports from users who were getting mixed
signals from the addon, believing that the bone name warnings were
the cause of the sequences not being imported. The actual issue was that
users didn't know they needed to manually select the sequences within
the PSA.

This should fix the poor UX around this, as just having it selected by
default is more sensible for a wider audience.
  • Loading branch information
cmbasnett committed Oct 19, 2023
1 parent 4db8764 commit 122e765
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion io_scene_psk_psa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
bl_info = {
"name": "PSK/PSA Importer/Exporter",
"author": "Colin Basnett, Yurii Ti",
"version": (5, 0, 5),
"version": (5, 0, 6),
"blender": (3, 4, 0),
"description": "PSK/PSA Import/Export (.psk/.psa)",
"warning": "",
Expand Down
2 changes: 1 addition & 1 deletion io_scene_psk_psa/psa/export/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def psa_export_property_group_animation_data_override_poll(_context, obj):
class PSA_PG_export_action_list_item(PropertyGroup):
action: PointerProperty(type=Action)
name: StringProperty()
is_selected: BoolProperty(default=False)
is_selected: BoolProperty(default=True)
frame_start: IntProperty(options={'HIDDEN'})
frame_end: IntProperty(options={'HIDDEN'})
is_pose_marker: BoolProperty(options={'HIDDEN'})
Expand Down
2 changes: 1 addition & 1 deletion io_scene_psk_psa/psa/import_/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class PSA_PG_import_action_list_item(PropertyGroup):
action_name: StringProperty(options=empty_set)
is_selected: BoolProperty(default=False, options=empty_set)
is_selected: BoolProperty(default=True, options=empty_set)


class PSA_PG_bone(PropertyGroup):
Expand Down

0 comments on commit 122e765

Please sign in to comment.