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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-11-26 18:36:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-26 18:36:23 +0300
commit64f552356a27366664014aa8d0b31e4a2cb91bf8 (patch)
treeceb08103fed95dd680962dc44c6411bba558bad3 /release/scripts/op/object.py
parentcd104206e7359908203ee0a83d112b0a2b777da6 (diff)
ctrl 1-5 for changing subsurf levels
Diffstat (limited to 'release/scripts/op/object.py')
-rw-r--r--release/scripts/op/object.py52
1 files changed, 52 insertions, 0 deletions
diff --git a/release/scripts/op/object.py b/release/scripts/op/object.py
new file mode 100644
index 00000000000..2f9672e7447
--- /dev/null
+++ b/release/scripts/op/object.py
@@ -0,0 +1,52 @@
+# ##### BEGIN GPL LICENSE BLOCK #####
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# ##### END GPL LICENSE BLOCK #####
+
+import bpy
+
+class SubsurfSet(bpy.types.Operator):
+ '''TODO, doc.'''
+
+ bl_idname = "object.subsurf_set"
+ bl_label = "Subsurf Set"
+ bl_register = True
+ bl_undo = True
+
+ level = bpy.props.IntProperty(name="Level",
+ default=1, min=0, max=6)
+
+ def poll(self, context):
+ ob = context.active_object
+ return (ob and ob.type == 'MESH')
+
+ def execute(self, context):
+ ob = context.active_object
+ for mod in ob.modifiers:
+ if mod.type == 'SUBSURF':
+ if mod.levels != level:
+ mod.levels = level
+ return
+
+ # adda new modifier
+ bpy.ops.object.modifier_add(type='SUBSURF') # TODO, support adding directly
+ mod = ob.modifiers[-1]
+ mod.levels = level
+ return ('FINISHED',)
+
+
+# Register the operator
+bpy.ops.add(SubsurfSet)