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:
authorNathan Vegdahl <cessen@cessen.com>2013-02-17 17:35:39 +0400
committerNathan Vegdahl <cessen@cessen.com>2013-02-17 17:35:39 +0400
commit40f30e6de5a3267c033884e54c851bd37711c113 (patch)
tree1d11646d18a37bc89c76600aa0f32a97c5207612 /rigify/ui.py
parent1227e12cc555d1830a6344e5f86d83464000beb3 (diff)
In rigify dev tools added a button to generate widget-creation code.
Diffstat (limited to 'rigify/ui.py')
-rw-r--r--rigify/ui.py52
1 files changed, 42 insertions, 10 deletions
diff --git a/rigify/ui.py b/rigify/ui.py
index c2e1e6c6..3ff46b67 100644
--- a/rigify/ui.py
+++ b/rigify/ui.py
@@ -21,7 +21,8 @@
import bpy
from bpy.props import StringProperty
-from .utils import get_rig_type, write_metarig, MetarigError
+from .utils import get_rig_type, MetarigError
+from .utils import write_metarig, write_widget
from . import rig_lists
from . import generate
@@ -201,16 +202,18 @@ class VIEW3D_PT_tools_rigify_dev(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'TOOLS'
- @classmethod
- def poll(cls, context):
- return (context.mode == 'EDIT_ARMATURE')
-
def draw(self, context):
- r = self.layout.row()
- r.operator("armature.rigify_encode_metarig", text="Encode Metarig to Python")
- r = self.layout.row()
- r.operator("armature.rigify_encode_metarig_sample", text="Encode Sample to Python")
-
+ obj = context.active_object
+ if obj != None:
+ if context.mode == 'EDIT_ARMATURE':
+ r = self.layout.row()
+ r.operator("armature.rigify_encode_metarig", text="Encode Metarig to Python")
+ r = self.layout.row()
+ r.operator("armature.rigify_encode_metarig_sample", text="Encode Sample to Python")
+
+ if context.mode == 'EDIT_MESH':
+ r = self.layout.row()
+ r.operator("mesh.rigify_encode_mesh_widget", text="Encode Mesh Widget to Python")
#~ class INFO_MT_armature_metarig_add(bpy.types.Menu):
#~ bl_idname = "INFO_MT_armature_metarig_add"
@@ -374,6 +377,33 @@ class EncodeMetarigSample(bpy.types.Operator):
return {'FINISHED'}
+class EncodeWidget(bpy.types.Operator):
+ """ Creates Python code that will generate the selected metarig.
+ """
+ bl_idname = "mesh.rigify_encode_mesh_widget"
+ bl_label = "Rigify Encode Widget"
+ bl_options = {'UNDO'}
+
+ @classmethod
+ def poll(self, context):
+ return context.mode == 'EDIT_MESH'
+
+ def execute(self, context):
+ name = "widget.py"
+
+ if name in bpy.data.texts:
+ text_block = bpy.data.texts[name]
+ text_block.clear()
+ else:
+ text_block = bpy.data.texts.new(name)
+
+ text = write_widget(context.active_object)
+ text_block.write(text)
+ bpy.ops.object.mode_set(mode='EDIT')
+
+ return {'FINISHED'}
+
+
#menu_func = (lambda self, context: self.layout.menu("INFO_MT_armature_metarig_add", icon='OUTLINER_OB_ARMATURE'))
#from bl_ui import space_info # ensure the menu is loaded first
@@ -388,6 +418,7 @@ def register():
bpy.utils.register_class(Sample)
bpy.utils.register_class(EncodeMetarig)
bpy.utils.register_class(EncodeMetarigSample)
+ bpy.utils.register_class(EncodeWidget)
#space_info.INFO_MT_armature_add.append(ui.menu_func)
@@ -402,3 +433,4 @@ def unregister():
bpy.utils.unregister_class(Sample)
bpy.utils.unregister_class(EncodeMetarig)
bpy.utils.unregister_class(EncodeMetarigSample)
+ bpy.utils.register_class(EncodeWidget)