Singularity/Library/PackageCache/com.unity.2d.animation@7.0.10/Documentation~/2DIK.md
2024-05-06 11:45:45 -07:00

12 KiB
Raw Blame History

2D Inverse Kinematics (IK)

Overview

The 2D Inverse Kinematics (IK) feature set allows you to apply 2D IK to the bones and Transforms of your characters animation skeletons. 2D IK automatically calculates for the positions and rotations of a chain of bones moving towards a target position. This makes it easier to pose and animate character limbs for animation, or to manipulate a skeleton in real-time, as manually keyframing the chain of bones is not required.

Workflow

The following workflow continues from the 2D Animation package animation workflow, and demonstrates how to apply 2D IK to your character skeletons.

  1. Refer to the hierarchy of bones created with the 2D Animation package's Bone tools of the Skinning Editor.

  2. Add the IK Manager 2D component to the GameObject at the top of the hierarchy. This is usually the main root bone of the entire character skeleton.

  3. Add to the IK Solvers list by selecting which type of IK Solver to use. The IK Solvers are also added as additional GameObjects in the hierarchy.

  4. With an IK Solver selected, create and set the Effector and Target for the IK Solver.

  5. Position bones by moving the Target's position to move the chain of bones with IK applied.

IK Solvers

The IK Solver calculates the position and rotation the Effector and its connected bones should take to achieve their Target position. Each type of IK Solver has its own algorithm that makes them better suited to different kinds of conditions.

The following properties are available to all Solvers:

Property Description
Effector Define the bone or Transform the IK Solver solves for.
Target The Transform which is used to indicate the desired position for the Effector.
Constrain Rotation This constrains the rotation of the Effector to the rotation of the Target.
Restore Default Pose Enable to restore the bones to their original positions before 2D IK is applied. Disable to apply 2D IK in relation to the Effectors current position and rotation.
Weight Use the slider to adjust the degree the IK Solvers solution affects the original Transform positions. At the lowest value of 0, the IK solution is ignored. At the maximum value of 1 the IK solution is fully applied. This value is further influenced by the IK Manager's master Weight setting.
The following properties are only available to Chain (CCD) and Chain (FABRIK) -
Chain Length The number of bones/Transforms (starting from the Effector) in the chain that the IK solution is applied to.
Iterations The number of times the algorithm runs.
Tolerance The threshold where the Target is considered to have reached its destination position, and when the IK Solver stops iterating.

Limb

This is a standard two bone Solver that is ideal for posing joints such as arms and legs. This Solvers chain length is fixed to three bones - starting from the Effector bone/Transform and including up to two additional bones in its chain.

Chain (CCD) - Cyclic Coordinate Descent

This IK Solver uses the Cyclic Coordinate Descent algorithm, which gradually becomes more accurate the more times the algorithm is run. The Solver stops running once the set tolerance or number of iterations is reached.

The following property is only available to the Chain (CCD) IK Solver:

Property Description
Velocity The speed the IK algorithm is applied to the Effector until it reaches its destination.

Chain (FABRIK) - Forward And Backward Reaching Inverse Kinematics

This IK Solver uses the Forward And Backward Reaching Inverse Kinematics (FABRIK) algorithm. It is similar to Chain (CCD) as its solution becomes more accurate the more times its algorithm is run. The Solver stops running once the set tolerance or number of iterations is reached.

The Chain (FABRIK) Solver generally takes less iterations to reach the Target's destination compared to Chain (CCD), but is slower per iteration if rotation limits are applied to the chain. This Solver is able to adapt quickly to if the bones are manipulated in real-time to different positions.

IK Manager 2D

The IK Manager 2D component controls the IK Solvers in the hierarchy. Add the Manager component to the highest bone in the hierarchy, commonly referred to as the Root bone.

  1. In this example, add the component to PlunkahG as it is the Root bone in the hierarchy:

  2. To add an IK Solver, click the + symbol at the bottom right of the IK Solvers list (see below).

  3. A drop-down menu then appears with three options - Chain (CCD), Chain (FABRIK), and Limb. Each type of IK Solver uses a different algorithm to solve for the position of Effectors.

IK Solvers are iterated in descending order, with Solvers lower in the list referring to the positions set by the Solvers higher in the list. The order of Solvers usually reflects the order of bones/Transforms in the skeleton hierarchy.

For example, if the arm bone is the child of the torso bone, then the torso's IK Solver should be set above the arms Solver in the list. Rearrange the Solvers by dragging the leftmost edge of a row up or down.

Weight

Weight measures the degree that a Solvers solution affects the positions of the bones/Transforms in the chain. The IK Manager 2D has a master Weight property that affects all Solvers it controls. It is applied in addition to the Solvers individual Weight settings.

Restore Default Pose

Click this to reset all bones and Transforms back to their original positions.

Creating an Effector and its Target

After creating an IK Solver, the next step is to set the Effector and its Target. A Target is a Transform that represents the target position the Effector attempts to reach. As the Effector moves towards the Target position, the IK Solver calculates for the position and rotation of the Effector and the chain of bones it is connected to.

Follow the steps below to set a Target:

  1. Select the last bone in the chain.

  2. Create an empty Transform (right-click > Create Empty). It is automatically created as a child of the highlighted bone.

  3. Move the position of the Transform to the tip of the last bone in the chain.

  4. Select the IK Solver. With its Inspector window open, drag the Transform from the hierarchy onto the Effector field

  5. Click the Create Target button. A Target is created at the Transform's position.

If the Create Target button appears inactive, ensure that the Chain Length value is set to one or greater.

  1. The Target is created as a child of the IK Solver. It appears as a circle gizmo in the Scene view. Move the Target to manipulate the connected chain of bones.

Scene view Gizmo

Toggle or customize the display settings of the IK Gizmos to adjust their visibility when animating your characters. This is useful when you need to improve their readability or to reduce on-screen noise when editing animating your characters.

Global IK Gizmos Toggle

You can toggle the IK Gizmos by going to the Gizmos drop-down menu at the upper right of the Scene view window, then select or clear IKManager2D (menu: Gizmos > Recently Changed > IKManager2D) to enable or disable the Gizmos respectively.

Solver Gizmos

Customize Solver Gizmos via the IK Manager 2D component that manages the Solvers. From the IK Manager 2D Component Inspector, you can individually hide the Solver's Gizmo to isolate only the Solvers that you are interested in. To futher distinguish the Gizmos, you can also customize the colors of the Gizmos from the IK Manager 2D Component Inspector

Scripting API Reference

Adding New Solvers

You can add your own solver by extending from the class Solver2D. Your extended class will then show up as a new solver under the solver menu in the IKManager2D component.

Solver2D

This is the base class for all IK Solvers in this package. IKManager2D will detect all classes extending this and accept it as a Solver it can control. Implement or override the following methods to create your own IK Solver:

  • protected abstract int GetChainCount()

This function returns the number of IK chains the solver owns. Use this to return the number of IK chains your solver owns.

  • public abstract IKChain2D GetChain(int index)

This function returns the IKChain2D at the given index. Use this to return the IKChain2D your solver owns at the given index.

  • protected virtual bool DoValidate()

This function does validation for all parameters passed into the solver. Use this to check if your solver is set up correctly with all inputs.

  • protected virtual void DoInitialize()

This function initializes the solver and builds the IK chains owned by the solver. This is called whenever the solver is invalid after changing the target of the solver or other parameters of the solver. Use this to initialize all the data from the parameters given to the solver, such as the IK chains owned by the solver.

  • protected virtual void DoPrepare()

This function prepares and converts the information of the Transforms (position, rotation, IK parameters etc) to structures which can be used by the IK algorithms. Use this to do any work to gather data used by your solver when updating the IK positions.

  • protected abstract void DoUpdateIK(List effectorPositions)

This function calculates and sets the desired IK positions for the Transforms controlled by the solver given a list of effector positions for each chain owned by the solver. The effector positions may be overridden by user positions if manipulated from the SceneView.

  • protected virtual Transform GetPlaneRootTransform()

This function returns the transform whose localspace XY plane is used to perform IK calculations. Use this to define the Transform used.

IKChain2D

This is the class which stores the transforms involved in an IK chain. When a chain is set up with a target and a transform count, initializing the Solver will populate the chain with the right transforms if valid.

  • Target - The transform which is used as the desired position for the target.
  • Effector - The transform to perform IK on to reach a desired position.
  • TransformCount - The number of transforms involved in the IK solution starting from the target. This is generally equivalent to ChainLength in solvers.
  • Transforms - All transforms involved in the chain. In general, the last transform in this is the target transform and the first transform is considered the root transform for the chain.
  • Lengths - The lengths between each transform in the chain.

Solver2DMenu

This attribute allows you to tag your Solver2D with a different name under the IKManager2D. Use this if you do not want to use the name of the class of the Solver2D.

Example when giving the LimbSolver2D the name 'Limb' in the menu: [Solver2DMenuAttribute("Limb")]