Skip to content

Commit

Permalink
add missing option for select animations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightnet committed Dec 22, 2012
1 parent 3ffe576 commit 1e227ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions io_export_unreal_psk_psa.py
Original file line number Diff line number Diff line change
Expand Up @@ -2289,16 +2289,15 @@ def draw(self, context):
row.label(text=path)
#layout.separator()
layout.prop(context.scene, "udk_option_export")
row10 = layout.row()
row10.prop(context.scene, "udk_option_selectobjects")
layout.prop(context.scene, "udk_option_selectobjects")

if context.scene.udk_option_selectobjects:
layout.operator("object.selobjectpdate")
layout.label(text="ARMATURE")
layout.template_list(context.scene, "udkArm_list", context.scene, "udkArm_list_idx",prop_list="template_list_controls", rows=3)
layout.label(text="MESH")
layout.template_list(context.scene, "udkmesh_list", context.scene, "udkmesh_list_idx",prop_list="template_list_controls", rows=5)
layout.prop(context.scene, "udk_option_selectanimations")
if context.scene.udk_option_selectanimations:
layout.operator("action.setanimupdate")
layout.label(text="Action Set(s)")
Expand Down

0 comments on commit 1e227ed

Please sign in to comment.