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:
Diffstat (limited to 'rigify/operators/action_layers.py')
-rw-r--r--rigify/operators/action_layers.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/rigify/operators/action_layers.py b/rigify/operators/action_layers.py
index c089722a..b81ac0ef 100644
--- a/rigify/operators/action_layers.py
+++ b/rigify/operators/action_layers.py
@@ -119,21 +119,21 @@ class ActionSlot(PropertyGroup, ActionSlotBase):
trans_min: FloatProperty(
name="Min",
default=-0.05,
- description="Value that the transformation value must reach to put the action's timeline"
+ description="Value that the transformation value must reach to put the action's timeline "
"to the first frame. Rotations are in degrees"
)
trans_max: FloatProperty(
name="Max",
default=0.05,
- description="Value that the transformation value must reach to put the action's timeline"
+ description="Value that the transformation value must reach to put the action's timeline "
"to the last frame. Rotations are in degrees"
)
is_corrective: BoolProperty(
name="Corrective",
- description="Indicate that this is a corrective action. Corrective actions will activate"
- "based on the activation of two other actions (using End Frame if both inputs"
+ description="Indicate that this is a corrective action. Corrective actions will activate "
+ "based on the activation of two other actions (using End Frame if both inputs "
"are at their End Frame, and Start Frame if either is at Start Frame)"
)