cutout_animation.rst 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. .. _doc_cutout_animation:
  2. Cutout animation
  3. ================
  4. What is it?
  5. ~~~~~~~~~~~
  6. Traditionally, `cutout animation <https://en.wikipedia.org/wiki/Cutout_animation>`__
  7. is a type of `stop motion animation <https://en.wikipedia.org/wiki/Stop_motion>`__
  8. in which pieces of paper (or other thin material) are cut into special shapes
  9. and arranged in two-dimensional representations of characters and objects.
  10. Characters' bodies are usually made out of several pieces. The pieces are
  11. arranged and photographed once for each frame of the film. The animator moves
  12. and rotates the parts in small increments between each shot to create the
  13. illusion of movement when the images are played back quickly in sequence.
  14. Simulations of cutout animation can now be created using software as seen in
  15. `South Park <https://en.wikipedia.org/wiki/South_Park>`__ and `Jake and the Never
  16. Land Pirates <https://en.wikipedia.org/wiki/Jake_and_the_Never_Land_Pirates>`__.
  17. In video games, this technique has also become popular. Examples of
  18. this are `Paper Mario <https://en.wikipedia.org/wiki/Super_Paper_Mario>`__ or
  19. `Rayman Origins <https://en.wikipedia.org/wiki/Rayman_Origins>`__ .
  20. Cutout animation in Godot
  21. ~~~~~~~~~~~~~~~~~~~~~~~~~
  22. Godot provides tools for working with cutout rigs, and is ideal for the workflow:
  23. - **The animation system is fully integrated with the engine**: This
  24. means animations can control much more than just motion of objects. Textures,
  25. sprite sizes, pivots, opacity, color modulation, and more, can all be animated
  26. and blended.
  27. - **Combine animation styles**: AnimatedSprite allows traditional cel animation
  28. to be used alongside cutout animation. In cel animation different animation
  29. frames use entirely different drawings rather than the same pieces positioned
  30. differently. In an otherwise cutout-based animation, cel animation can be used
  31. selectively for complex parts such as hands, feet, changing facial expressions,
  32. etc.
  33. - **Custom Shaped Elements**: Custom shapes can be created with
  34. :ref:`Polygon2D <class_Polygon2D>`
  35. allowing UV animation, deformations, etc.
  36. - **Particle Systems**: A cutout animation rig can be combined with particle
  37. systems. This can be useful for magic effects, jetpacks, etc.
  38. - **Custom Colliders**: Set colliders and influence areas in different
  39. parts of the skeletons, great for bosses and fighting games.
  40. - **Animation Tree**: Allows complex combinations and blending between
  41. several animations, the same way it works in 3D.
  42. And much more!
  43. Making of GBot
  44. ~~~~~~~~~~~~~~
  45. For this tutorial, we will use as demo content the pieces of the
  46. `GBot <https://www.youtube.com/watch?v=S13FrWuBMx4&list=UUckpus81gNin1aV8WSffRKw>`__
  47. character, created by Andreas Esau.
  48. .. image:: img/tuto_cutout_walk.gif
  49. Get your assets: :download:`gbot_resources.zip <files/gbot_resources.zip>`.
  50. Setting up the rig
  51. ~~~~~~~~~~~~~~~~~~
  52. Create an empty Node2D as root of the scene, we will work under it:
  53. .. image:: img/tuto_cutout1.png
  54. The first node of the model is the hip.
  55. Generally, both in 2D and 3D, the hip is the root of the skeleton. This
  56. makes it easier to animate:
  57. .. image:: img/tuto_cutout2.png
  58. Next will be the torso. The torso needs to be a child of the hip, so
  59. create a child sprite and load the torso texture, later accommodate it properly:
  60. .. image:: img/tuto_cutout3.png
  61. This looks good. Let's see if our hierarchy works as a skeleton by
  62. rotating the torso. We can do this be pressing :kbd:`E` to enter rotate mode,
  63. and dragging with the left mouse button. To exit rotate mode hit :kbd:`ESC`.
  64. .. image:: img/tutovec_torso1.gif
  65. The rotation pivot is wrong and needs to be adjusted.
  66. This small cross in the middle of the :ref:`Sprite <class_Sprite>` is
  67. the rotation pivot:
  68. .. image:: img/tuto_cutout4.png
  69. Adjusting the pivot
  70. ~~~~~~~~~~~~~~~~~~~
  71. The pivot can be adjusted by changing the *offset* property in the
  72. Sprite:
  73. .. image:: img/tuto_cutout5.png
  74. The pivot can also be adjusted *visually*. While hovering over the
  75. desired pivot point, press :kbd:`V` to move the pivot there for the
  76. selected Sprite. There is also a tool in the tool bar that has a
  77. similar function.
  78. .. image:: img/tutovec_torso2.gif
  79. Continue adding body pieces, starting with the
  80. right arm. Make sure to put each sprite in its correct place in the hierarchy,
  81. so its rotations and translations are relative to its parent:
  82. .. image:: img/tuto_cutout6.png
  83. With the left arm there's a problem. In 2D, child nodes appear in front of
  84. their parents:
  85. .. image:: img/tuto_cutout7.png
  86. We want the left arm to appear *behind*
  87. the hip and the torso. We could move the left arm nodes behind the hip (above
  88. the hip node in the scene hierarchy), but then the left arm is no longer in its
  89. proper place in the hierarchy. This means it wouldn't be affected by the movement
  90. of the torso. We'll fix this problem with ``RemoteTransform2D`` nodes.
  91. .. note:: You can also fix depth ordering problems by adjusting the Z property
  92. of any node inheriting from Node2D.
  93. RemoteTransform2D node
  94. ~~~~~~~~~~~~~~~~~~~~~~
  95. The :ref:`RemoteTransform2D <class_RemoteTransform2D>` node transforms nodes
  96. somewhere else in the hierarchy. This node applies its own transform (including
  97. any transformation it inherits from its parents) to the remote node it targets.
  98. This allows us to correct the visibility order of our elements, independently of
  99. the locations of those parts in the cutout hierarchy.
  100. Create a ``RemoteTransform2D`` node as a child of the torso. Call it ``remote_arm_l``.
  101. Create another RemoteTransform2D node inside the first and call it ``remote_hand_l``.
  102. Use the ``Remote Path`` property of the two new nodes to target the ``arm_l`` and
  103. ``hand_l`` sprites respectively:
  104. .. image:: img/tuto_cutout9.png
  105. Moving the ``RemoteTransform2D`` nodes now moves the sprites. So we can create
  106. animations by adjusting the ``RemoteTransform2D`` transforms:
  107. .. image:: img/tutovec_torso4.gif
  108. Completing the skeleton
  109. ~~~~~~~~~~~~~~~~~~~~~~~
  110. Complete the skeleton by following the same steps for the rest of the
  111. parts. The resulting scene should look similar to this:
  112. .. image:: img/tuto_cutout10.png
  113. The resulting rig will be easy to animate. By selecting the nodes and
  114. rotating them you can animate forward kinematics (FK) efficiently.
  115. For simple objects and rigs this is fine, but there are limitations:
  116. - Selecting sprites in the main viewport can become difficult in complex rigs.
  117. The scene tree ends up being used to select parts instead, which can be slower.
  118. - Inverse Kinematics (IK) is useful for animating extremities like hands and
  119. feet, and can't be used with our rig in its current state.
  120. To solve these problems we'll use Godot's skeletons.
  121. Skeletons
  122. ~~~~~~~~~
  123. In Godot there is a helper to create "bones" between nodes. The bone-linked
  124. nodes are called skeletons.
  125. As an example, let's turn the right arm into a skeleton. To create
  126. a skeleton, a chain of nodes must be selected from top to bottom:
  127. .. image:: img/tuto_cutout11.png
  128. Then, click on the Skeleton menu and select ``Make Bones``.
  129. .. image:: img/tuto_cutout12.png
  130. This will add bones covering the arm, but the result may be surprising.
  131. .. image:: img/tuto_cutout13.png
  132. Why does the hand lack a bone? In Godot, a bone connects a
  133. node with its parent. And there's currently no child of the hand node.
  134. With this knowledge let's try again.
  135. The first step is creating an endpoint node. Any kind of node will do,
  136. but :ref:`Position2D <class_Position2D>` is preferred because it's
  137. visible in the editor. The endpoint node will ensure that the last bone
  138. has orientation.
  139. .. image:: img/tuto_cutout14.png
  140. Now select the whole chain, from the endpoint to the arm and create
  141. bones:
  142. .. image:: img/tuto_cutout15.png
  143. The result resembles a skeleton a lot more, and now the arm and forearm
  144. can be selected and animated.
  145. Create endpoints for all important extremities. Generate bones for all
  146. articulable parts of the cutout, with the hip as the ultimate connection
  147. between all of them.
  148. You may notice that an extra bone is created when connecting the hip and torso.
  149. Godot has connected the hip node to the scene root with a bone, and we don't
  150. want that. To fix this, select the root and hip node, open the Skeleton menu,
  151. click ``clear bones``.
  152. .. image:: img/tuto_cutout15_2.png
  153. Your final skeleton should look something like this:
  154. .. image:: img/tuto_cutout16.png
  155. You might have noticed a second set of endpoints in the hands. This will make
  156. sense soon.
  157. Now that the whole figure is rigged, the next step is setting up the IK
  158. chains. IK chains allow for more natural control of extremities.
  159. IK chains
  160. ~~~~~~~~~
  161. IK stands for inverse kinematics. It's a convenient technique for animating the
  162. position of hands, feet and other extremities of rigs like the one we've made.
  163. Imagine you want to pose a character's foot in a specific position on the ground.
  164. Without IK chains, each motion of the foot would require rotating and positioning
  165. several other bones (the shin and the thigh at least). This would be quite
  166. complex and lead to imprecise results.
  167. IK allows us to move directly the foot while the shin and thigh self-adjust.
  168. To create an IK chain, select a chain of bones from endpoint to
  169. the base for the chain. For example, to create an IK chain for the right
  170. leg, select the following:
  171. .. image:: img/tuto_cutout17.png
  172. Then enable this chain for IK. Go to Edit > Make IK Chain.
  173. .. image:: img/tuto_cutout18.png
  174. As a result, the base of the chain will turn *Yellow*.
  175. .. image:: img/tuto_cutout19.png
  176. Once the IK chain is set-up grab any child or grand-child of the base of the
  177. chain (e.g. a foot) and move it. You'll see the rest of the chain adjust as you
  178. adjust its position.
  179. .. image:: img/tutovec_torso5.gif
  180. Animation tips
  181. ~~~~~~~~~~~~~~
  182. The following section will be a collection of tips for creating animation for
  183. your cutout rigs. For more information on how the animation system in Godot
  184. works, see :ref:`doc_introduction_animation`.
  185. Setting keyframes and excluding properties
  186. ------------------------------------------
  187. Special contextual elements appear in the top toolbar when the animation editor
  188. window is open:
  189. .. image:: img/tuto_cutout20.png
  190. The key button inserts location, rotation, and scale keyframes for the
  191. selected objects or bones at the current playhead position.
  192. The "loc", "rot", and "scl" toggle buttons to the left of the key button modify
  193. its function, allowing you to specify which of the three properties keyframes
  194. will be created for.
  195. Here's an illustration of how this can be useful: Imagine you have a node which
  196. already has two keyframes animating its scale only. You want to add an
  197. overlapping rotation movement to the same node. The rotation movement should
  198. begin and end at different times from the scale change that's already set up.
  199. You can use the toggle buttons to have only rotation information added when you
  200. add a new keyframe. This way, you can avoid adding unwanted scale keyframes
  201. which would disrupt the existing scale animation.
  202. Creating a rest pose
  203. ~~~~~~~~~~~~~~~~~~~~
  204. Think of a rest pose as a default pose that your cutout rig should be set to
  205. when no other pose is active in your game. Create a rest pose as follows:
  206. 1. Make sure the rig parts are positioned in what looks like a "resting"
  207. arrangement.
  208. 2. Create a new animation, rename it "rest".
  209. 3. Select all nodes in your rig (box selection should work fine).
  210. 4. Make sure the "loc", "rot", and "scl" toggle buttons are all active in the
  211. toolbar.
  212. 5. Press the key button. Keys will be inserted for all selected parts storing
  213. their current arrangement. This pose can now be recalled when necessary in
  214. your game by playing the "rest" animation you've created.
  215. .. image:: img/tuto_cutout21.png
  216. Modifying rotation only
  217. ~~~~~~~~~~~~~~~~~~~~~~~
  218. When animating a cutout rig, often it's only the rotation of the nodes that
  219. needs to change.
  220. Location and scale are rarely used.
  221. So when inserting keys, you might find it convenient to have only the "rot"
  222. toggle active most of the time:
  223. .. image:: img/tuto_cutout22.png
  224. This will avoid the creation of unwanted animation tracks for position
  225. and scale.
  226. Keyframing IK chains
  227. ~~~~~~~~~~~~~~~~~~~~
  228. When editing IK chains, it's not necessary to select the whole chain to
  229. add keyframes. Selecting the endpoint of the chain and inserting a
  230. keyframe will automatically insert keyframes for all other parts of the chain too.
  231. Visually move a sprite behind its parent
  232. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  233. Sometimes it is necessary to have a node change its visual depth relative to
  234. its parent node during an animation. Think of a character facing the camera,
  235. who pulls something out from behind his back and holds it out in front of him.
  236. During this animation the whole arm and the object in his hand would need to
  237. change their visual depth relative to the body of the character.
  238. To help with this there's a keyframable "Behind Parent" property on all
  239. Node2D-inheriting nodes. When planning your rig, think about the movements it
  240. will need to perform and give some thought to how you'll use "Behind Parent"
  241. and/or RemoteTransform2D nodes. They provide overlapping functionality.
  242. .. image:: img/tuto_cutout23.png
  243. Setting easing curves for multiple keys
  244. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  245. To apply the same easing curve to multiple keyframes at once:
  246. 1. Select the relevant keys.
  247. 2. Click on the pencil icon in the bottom right of the animation panel. This
  248. will open the transition editor.
  249. 3. In the transition editor, click on the desired curve to apply it.
  250. .. image:: img/tuto_cutout24.png
  251. 2D Skeletal deform
  252. ~~~~~~~~~~~~~~~~~~
  253. Skeletal deform can be used to augment a cutout rig, allowing single pieces to
  254. deform organically (e.g. antennae that wobble as an insect character walks).
  255. This process is described in a :ref:`separate tutorial <doc_2d_skeletons>`.