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-21 03:05:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-21 03:05:43 +0300
commit6073bc9bc3f935e4018fd0cc1fc3d2b1db6fc0b6 (patch)
treefcf2a0537178e80a2d5f126e7de3d4c49790cdc0 /release/scripts/ui/properties_object_constraint.py
parentd91e6e2160f7aca87c86fadc69069c95d1a9e547 (diff)
pep8 cleanup & default select axis to negative (artist requst, make sense if you model the RHS and spend most time looping at the models front)
Diffstat (limited to 'release/scripts/ui/properties_object_constraint.py')
-rw-r--r--release/scripts/ui/properties_object_constraint.py42
1 files changed, 21 insertions, 21 deletions
diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py
index 1816be06483..007f9762872 100644
--- a/release/scripts/ui/properties_object_constraint.py
+++ b/release/scripts/ui/properties_object_constraint.py
@@ -43,7 +43,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
def space_template(self, layout, con, wide_ui, target=True, owner=True):
if target or owner:
-
+
split = layout.split(percentage=0.2)
if wide_ui:
@@ -51,8 +51,8 @@ class ConstraintButtonsPanel(bpy.types.Panel):
row = split.row()
else:
row = layout.row()
-
-
+
+
if target:
row.itemR(con, "target_space", text="")
@@ -132,7 +132,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
col = split.column()
col.itemO("constraint.childof_set_inverse")
-
+
if wide_ui:
col = split.column()
col.itemO("constraint.childof_clear_inverse")
@@ -149,7 +149,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
col = split.column()
col.itemR(con, "up", text="Up")
-
+
if wide_ui:
col = split.column()
col.itemR(con, "target_z")
@@ -189,7 +189,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
sub = col.column()
sub.active = con.rotation
sub.itemR(con, "orient_weight", text="Rotation", slider=True)
-
+
if wide_ui:
col = split.column()
col.itemR(con, "tail")
@@ -471,7 +471,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
layout.itemR(con, "action")
else:
layout.itemR(con, "action", text="")
-
+
if wide_ui:
layout.itemR(con, "transform_channel")
else:
@@ -526,7 +526,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
col = split.column()
col.itemR(con, "original_length", text="Rest Length")
-
+
if wide_ui:
col = split.column()
col.itemO("constraint.stretchto_reset", text="Reset")
@@ -550,7 +550,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
col = split.column()
col.itemR(con, "sticky")
-
+
if wide_ui:
col = split.column()
col.itemR(con, "use_rotation")
@@ -578,7 +578,7 @@ class ConstraintButtonsPanel(bpy.types.Panel):
col = split.column()
col.itemR(con, "disable_linked_collision", text="No Collision")
-
+
if wide_ui:
col = split.column()
col.itemR(con, "draw_pivot", text="Display Pivot")
@@ -615,13 +615,13 @@ class ConstraintButtonsPanel(bpy.types.Panel):
self.target_template(layout, con, wide_ui)
layout.itemR(con, "extrapolate_motion", text="Extrapolate")
-
+
col = layout.column()
col.row().itemL(text="Source:")
col.row().itemR(con, "map_from", expand=True)
-
+
split = layout.split()
-
+
sub = split.column(align=True)
sub.itemL(text="X:")
sub.itemR(con, "from_min_x", text="Min")
@@ -646,29 +646,29 @@ class ConstraintButtonsPanel(bpy.types.Panel):
col.row().itemR(con, "map_to", expand=True)
split = layout.split()
-
+
col = split.column()
col.itemL(text="X:")
col.row().itemR(con, "map_to_x_from", expand=True)
-
+
sub = col.column(align=True)
sub.itemR(con, "to_min_x", text="Min")
sub.itemR(con, "to_max_x", text="Max")
-
+
if wide_ui:
col = split.column()
col.itemL(text="Y:")
col.row().itemR(con, "map_to_y_from", expand=True)
-
+
sub = col.column(align=True)
sub.itemR(con, "to_min_y", text="Min")
sub.itemR(con, "to_max_y", text="Max")
-
+
if wide_ui:
col = split.column()
col.itemL(text="Z:")
col.row().itemR(con, "map_to_z_from", expand=True)
-
+
sub = col.column(align=True)
sub.itemR(con, "to_min_z", text="Min")
sub.itemR(con, "to_max_z", text="Max")
@@ -866,11 +866,11 @@ class BONE_PT_iksolver_itasc(ConstraintButtonsPanel):
split.active = not simulation or itasc.reiteration != 'NEVER'
col = split.column()
col.itemR(itasc, "precision")
-
+
if wide_ui:
col = split.column()
col.itemR(itasc, "num_iter")
-
+
if simulation:
layout.itemR(itasc, "auto_step")