Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Phan <darkneter@gmail.com>2012-12-23 01:23:30 +0400
committerJohn Phan <darkneter@gmail.com>2012-12-23 01:23:30 +0400
commit1e227edf1149a7a80b60a8ba341e2e252da5334d (patch)
tree26249b05a8cb8182172b3a91e8f5fb2a95b4229c /io_export_unreal_psk_psa.py
parent3ffe576abb9d4dc683b14fee82a625844bcd219d (diff)
add missing option for select animations.
Diffstat (limited to 'io_export_unreal_psk_psa.py')
-rw-r--r--io_export_unreal_psk_psa.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/io_export_unreal_psk_psa.py b/io_export_unreal_psk_psa.py
index bfae50f4..c619d6a4 100644
--- a/io_export_unreal_psk_psa.py
+++ b/io_export_unreal_psk_psa.py
@@ -2289,8 +2289,7 @@ class Panel_UDKExport( bpy.types.Panel ):
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")
@@ -2298,7 +2297,7 @@ class Panel_UDKExport( bpy.types.Panel ):
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)")