File: workflow_examples.rst

package info (click to toggle)
blender-doc 4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 253,604 kB
  • sloc: python: 13,030; javascript: 322; makefile: 113; sh: 107
file content (311 lines) | stat: -rw-r--r-- 14,737 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311

*******************
Workflow & Examples
*******************

Simple Drivers can be configured from the pop-over that appears when adding a new Driver.
When adding multiple Drivers or for more advanced configurations,
it is useful to have open the :doc:`Drivers Editor </editors/drivers_editor>`.


Transform Driver
================

Control a property with an object's transform.
In this example, the Y rotation of Object 2 will be driven by the X position of Object 1.
Starting from a simple setup with two objects:

#. Add a Driver to the *Rotation Y* property of the second object via the context menu or with :kbd:`Ctrl-D`.

   .. figure:: /images/animation_drivers_workflow-examples_transform-driver-1.png

#. Open the *Drivers Editor* and select the *Y Euler Rotation* property in the channels region.
#. Open the Sidebar region and select the *Drivers* tab.
#. Configure the driver to be the *Averaged Value* of a *Transform Channel* of the first object.

   .. figure:: /images/animation_drivers_workflow-examples_transform-driver-2.png

#. Experiment with moving the first object and notice how it affects the Y rotation of the second object.


Scripted Expression - Orbit a Point
===================================

Orbit an object's position around a point with a custom *Scripted Expression*.
The object's position will change when scrubbing the timeline.
Using trigonometry, circular motion can be defined in 2D using the sine and cosine functions.
(See `Unit Circle <https://en.wikipedia.org/wiki/Unit_circle>`__.)
In this example, the current frame is used as the variable that induces the motion.
``frame`` is a :ref:`Simple Expression <drivers-simple-expressions>` that corresponds to
``bpy.context.scene.frame_current``.

.. figure:: /images/animation_drivers_workflow-examples_object-rotation.png

#. Add a driver to the X Location property.

   #. Set the *Driver Type* to *Scripted Expression*.
   #. Add the expression ``0 + (sin(frame / 8) * 4)``, where:

      - ``frame/8`` : is the current frame of the animation, divided by 8 to slow the orbit down.
      - ``(sin( )*4)`` : multiplies the result of ``sin(frame/8)`` by 4 for a bigger circle.
      - ``0 +`` : is used to control the offset to the orbit center point.

#. Add a driver to the Y Location property with the expression ``0 + (cos(frame / 8) * 4)``.
#. Scrub the timeline to see the effect.
   Experiment with the variables to control the size and center of the orbit.


.. _driver-namespace:

Custom Function - Square Value
==============================

Create a custom function to get the square of a value (i.e. *value*\ :sup:`2`).
Adding the function to the *Driver Namespace* allows it to be used from driver expressions.
The *Driver Namespace* has a list of built-in functions for use in driver expressions,
as well as constants such as π and e.
These can be inspected via the Python Console::

   >>> bpy.app.driver_namespace[' <tab>
                                 acos']
                                 acosh']
                                 asin']
                                 asinh']
                                 atan']
                                 ...

To add a new function to the *Driver Namespace*, the function itself needs to be implemented
and then added to the ``bpy.app.driver_namespace``.

#. Add the following to the Text Editor inside Blender and press *Run Script*. ::

      import bpy

      def square(val):
         """Returns the square of the given value"""
         return val * val

      # Add function to driver_namespace.
      bpy.app.driver_namespace['square'] = square

#. Add a driver with a *Scripted Expression* such as ``square(frame)``.
#. Observe the effect when scrubbing the timeline.

There are more custom function examples available in Blender's Text Editor
:menuselection:`Templates --> Python --> Driver Functions`.
Since :ref:`Simple Expressions <drivers-simple-expressions>` cannot access
custom functions, using them only makes sense for complex computations.

.. warning::
   Trying to replace built-in entries of the driver namespace may result in undefined behavior.

.. _driver-attribute-node-emulation:

View Layer Attribute Lookup
===========================

The material :doc:`Attribute Node </render/shader_nodes/input/attribute>` in the View Layer mode
automatically searches for the attribute property in multiple locations. This, for example, can allow
setting a certain value of the custom attribute at the :doc:`Scene </scene_layout/scene/introduction>`
or :doc:`World </render/lights/world>` level, and then overriding it
differently for one :doc:`View Layer </scene_layout/view_layers/introduction>`.

.. figure:: /images/animation_drivers_workflow-examples_attribute-lookup.png
   :width: 200px
   :align: right

Context Properties of drivers don't implement this behavior, so if necessary it has to be manually
emulated via fallback values and a conditional expression (conditions are
:ref:`Simple Expressions <drivers-simple-expressions>`).

For an attribute named ``attr``, the node tries the following six RNA path lookups in order:

* ``["attr"]`` in the active View Layer (custom property).
* ``attr`` in the active View Layer (built-in property).
* ``["attr"]`` in the active Scene.
* ``attr`` in the active Scene.
* ``world["attr"]`` in the active Scene.
* ``world.attr`` in the active Scene.

Depending on the specific property it may be sufficient to check only a subset of these locations.
For example, the image on the right shows how to access an attribute that is known to definitely be
a custom property with a color value.

Driver variables accessing locations that are not final in the lookup chain should use fallback values that are
invalid for the attribute (e.g. negative color values), which can then be checked by the conditional expression.
The final variable should fallback to a valid default value to be used when the property is not set at all.

.. _shapekey-driver-example:

Shape Key Drivers
=================

Improved Mesh Deformation
-------------------------

Fix intersection problems that happen when using armatures and weight painting, especially at joints.
Shape keys can also be used to tweak and refine a rig, for example to suggest muscle formations.
In this example, a shape key is used to improve the deformation at the elbow of a rudimentary arm.

.. figure:: /images/animation_drivers_workflow-examples_shape-key-improved-deformation.png

   Left: Skeletal mesh deformation without correction.
   Right: Corrective shape key applied

Setup
   #. Add a mesh (in this example, a cylinder with loop cuts).
   #. Add an armature with a chain of bones.
   #. Skin the mesh to the armature using weight painting.

   (Note: to parent the mesh to the armature: select the mesh first,
   then the armature and use :kbd:`Ctrl-P` to parent with auto weights.)

Experiment with posing the armature and observe the deformation at the joint.
To fix intersection problems or angles that look unsatisfactory,
you can associate a :doc:`Shape Key </animation/shape_keys/index>` with a pose.

Shape Key
   #. Pose the armature such that the problems are visible.
      Be sure to cover the extreme poses that you want to support for the rig.
   #. With the mesh selected, add a new *Shape Key* in addition to the *Basis* key.
      :menuselection:`Properties --> Mesh tab --> Shape Keys`
   #. In order to author the shape key on top of the armature deformation,
      enable both *Edit Mode Display* and *Cage Editing* in the Armature modifier.
      :menuselection:`Properties --> Modifiers tab --> Armature Modifier --> Header`
   #. Enter Edit Mode and select the new shape key in the properties panel.
      Adjust the vertices as desired.
      Select the *Basis* key to toggle between the original mesh and your edits.
      (Note: be careful to apply edits only to your shape and not to
      the original mesh or other existing keys.)

Once you are satisfied with how the deformation looks for the problematic pose,
you'll need to configure a driver to activate the shape smoothly when entering that position.

Driver
   #. Add a driver to the *Value* of the shape key you've created.
   #. Open the Drivers Editor and select the driver.

   Method 1 -- Direct mapping to a bone rotation value
      A simple way to configure the driver is with a direct correspondence of
      the value of a bone's rotation channel to the shape key activation *Value*.
      This method has the disadvantage of relying on a single channel of a bone's
      rotation which might be insufficient to precisely express the condition
      under which the shape key should be activated.

      #. In the Drivers tab, select the *Averaged Value* of the rotation of
         the bone you are posing.

         Understand the rotation axis that you are interested in by enabling axes display
         in the armature or by observing the bone's transform values in the Properties.

         Select the rotation channel and set it to local, meaning, the bone's
         rotation value relative to its parent bone.

         .. figure:: /images/animation_drivers_workflow-examples_shape-key-method1.png

      #. Manually set points in the driver curve by selecting a handle and
         dragging it or inserting values in the *F-Curve* tab.
         The Y axis represents the shape key *Value*, which should go from 0.0 to 1.0.
         The X axis is usually the frame, but for this driver it represents the rotation value in radians.
         You can have more than two points in the curve and tweak the transitions
         with the handles in the curve view (:kbd:`G` to move).

      #. To verify that the driver behaves correctly, deselect the option to
         only show drivers for selected objects. This way, you can pose the armature
         and keep an eye on the driver.

   Method 2 -- Rotational difference to a target bone
      This method requires an additional *target* or *corrective* bone, but it
      better expresses the spatial condition in 3D space of the bone that is
      causing the problem.

      #. In armature Edit Mode, add a new bone extruded from Bone 1,
         in the position at which Bone 2 should have the shape key active.
         This type of bones usually follow a naming convention such as
         "TAR-" (target) or "COR-" (corrective).

      #. In the Drivers tab, select the *Averaged Value* of the rotational difference
         between the bone you are rotating and the target bone.
         A rotational difference is the minimum angle between two objects in World Space.
         It is therefore important that the bones have the same root,
         so that the only thing affecting the angle between the bones is the rotation of one of them.
         When the deformation bone (Bone 2) reaches the target rotation (TAR-Bone 2)
         the rotational difference will be 0°.

         .. figure:: /images/animation_drivers_workflow-examples_shape-key-method2.png

      #. Manually adjust the driver curve handles so that the shape key *Value*
         (Y axis) is 1.0 when the rotational difference (X axis) is 0°.
         The *Value* should be 0.0 when the arm is extended, at which point
         the rotational difference should be around 90° or more (in radians).

      #. See the steps in Method 1 on how to adjust the curve handles and
         confirm that the functionality is working. Pose the armature to
         verify that the ranges are correct.


Chained Relative Shape Keys
---------------------------

Activate different shape keys in succession.
In this example, moving a single bone will activate first *Key 1* and then *Key 2*.
See also :ref:`relative shape keys mix additively <animation-shapekeys-relative-vs-absolute>`.

Shape Keys
   Add two shape keys to a mesh, besides the *Basis*.

.. list-table::

   * - .. figure:: /images/animation_drivers_workflow-examples_chained-shape-keys-basis.png
          :width: 200px

          Basis.

     - .. figure:: /images/animation_drivers_workflow-examples_chained-shape-keys-key1.png
          :width: 200px

          Key 1: top faces moved up by 1 m.

     - .. figure:: /images/animation_drivers_workflow-examples_chained-shape-keys-key2.png
          :width: 200px

          Key 2: inner top moved up by 1 m.

Drivers
   Add an armature with a single bone to control the shape keys.
   The goal is to activate the keys in succession as this bone moves up.

   .. figure:: /images/animation_drivers_workflow-examples_chained-shape-keys-result.png

   As shown in the picture above, when the bone is halfway up, both *Key 1* and *Key 2* have an influence.
   It is a matter of preference if *Key 1* should be at its maximum *Value* before *Key 2* starts to become active,
   or how much they should overlap. This example shows a seamless blend.

   For a seamless blend where there is overlap, *Key 1* should have a *Value* of 0.0 when the bone
   is at the bottom and increase linearly to 1.0 until the bone is past the midpoint height.
   *Key 2* should have a value of 0.0 before the midpoint height and then increase at the same
   rate than *Key 1* until reaching *Value* 1.0 when the bone is at maximum height.

   #. Add a driver to the *Value* of *Key 1* and *Key 2*.
      In the *Drivers* tab, configure both drivers to be the *Averaged Value* of
      a variable with the bone's Z location.
   #. Determine the range of the bone's motion in the World Z axis by moving it up so that it is
      aligned with the top of the mesh when both keys are active. Here we will use [0.0, 2.5].
   #. Configure the driver functions so that the *Value* of the shape keys (Y axis) is as
      desired for the bone's height (X axis).

      The driver functions should be linear, therefore, they can be defined analytically
      with a function of type :math:`y = a + bx`,
      where :math:`a` is an offset in :math:`y` and :math:`b` is the slope.

      #. In the *Modifiers* tab, add a *Generator* of type *Extended Polynomial* for both drivers.
      #. Play with the values of :math:`a` and :math:`b` so that the curves go from [0.0, 1.0]
         in the Y axis and from [0.0, 2.5] in the X axis.
         The curves should overlap in the mid area of the X axis and they should have the same slope (:math:`b`).

         Possible values are *Key 1*: :math:`y = 0.0 + 0.6x` and *Key 2*: :math:`y = -0.5 + 0.6x`.

         .. figure:: /images/animation_drivers_workflow-examples_chained-shape-keys-driver-setup.png

         Note that the functions go outside the range [0.0, 1.0] for the shape keys' *Value*,
         but that has no effect because *Value* is clamped in a *Range* in the *Shape Keys* panel.