Home > Articles

This chapter is from the book

Setting Up Hand IK

If you tested the Pawn and IK from the previous section, you noticed that although the head IK works fairly well, if you have motion controllers, the temptation to move your hands is quite strong.

To set it up so that your motion controllers control the hands of the UE4 mannequin, you will use the simple two-bone IK system of UE4. This is because it is nice to have experience with both the FABRIK and two-bone systems, and the IK between the player’s hands and shoulders works quite well with the two-bone system.

Before starting, we will work off of the previous section, so if you haven’t completed that, please do so.

Adding Motion Controllers to Your Pawn

Before you set up the IK for your Pawn, you need to add the Motion Controller Components that will be used to track the player’s hands:

  1. Open the IKPawn from the Blueprints folder.

  2. Add two new Motion Controller Components, the first named MotionController_L and the second MotionController_R.

  3. For MotionController_R, set the Hand variable to Right.

  4. Create two new Static Mesh Components to represent the controllers. These are mainly for debugging purposes.

  5. If you are using Unreal Engine 4.13 or higher, you will have access to the motion controller meshes built into the engine (simply select Show Engine Content in the View options). If this is the case, select the appropriate Static Mesh property for your device for these two newly created Components. (For example, I am using the Oculus Touch, so I selected the OculusControllerMesh Static Mesh.) If you are not using 4.13 or above, simply select a sphere to represent your controllers or import the controller meshes from an external source.

  6. Name these meshes appropriately for your controller (in this case, Touch_L and Touch_R were chosen) and attach these to the appropriate Motion Controller Component. Be sure to invert the Y scale on the right mesh if necessary (see Figure 7.12).

Figure 7.12

Figure 7.12 Adding motion controllers to the IKPawn

Hand IK Animation Blueprint

Your IKAnimBP class already implements a FABRIK system for the head and spine IK, so now it is time to implement a two-bone IK system for both arms of your skeleton:

  1. Open the IKAnimBP Animation Blueprint and create two new variables, LeftHandWorldPosition and LeftHandWorldRotation, of types Vector and Rotator respectively. For LeftHandWorldPosition, set a default value of (X = 40, Y = 20, Z = 100). This ensures that the mesh has an appropriate preview pose.

  2. Create two more variables named RightHandWorldPosition and RightHandWorldRotation of types Vector and Rotator again. For RightHandWorldPosition set a default value of (X = –40, Y = 20, Z = 100) this time (see Figure 7.13). These will hold the world position and rotation of both motion controllers.

    Figure 7.13

    Figure 7.13 IKAnimBP: adding the hand IK variables

  3. Before you start adding the IK setup, you will add two Sockets to the Skeleton. This is because the origin point of the motion controllers does not line up with the hand bone location. This means that you will need to account for an offset when you use IK to get to the motion controller position.

  4. Open the Skeleton editor by clicking on the Skeleton tab inside Persona.

  5. Right-click the hand_l bone in the hierarchy and select Add Socket. Name this Socket hand_lSocket because you will reference it later.

  6. This newly created Socket will initially be at the same position as its parent bone. To change this, select it and in the Details panel change the Relative Location to (X = 13.0, Y = –6.0, Z = –3.5). This places the Socket in the palm of the Skeleton’s hand.

  7. With this new Socket still selected, set its Relative Rotation to 180 degrees in the X-axis.

  8. To test the position of this Socket if you are using Unreal Engine 4.13 or above or have access to the controller mesh of your desired motion controller, right-click the Socket and add a Preview Asset of your controller (see Figure 7.14).

    Figure 7.14

    Figure 7.14 IKAnimBP: adding the controller offset Sockets to compensate for the hand bone placement

  9. To make sure you have a Socket for both hands, repeat steps 5 through 8, but this time for the hand_r bone with a Relative Location of (X = –13.0, Y = 6.0, Z = 3.5) and a Relative Rotation of 180 degrees in the Z-axis.

  10. To take advantage of these newly created Sockets, head back to the Animation Blueprint.

  11. Create a variable setter for each of the left- and right-hand position and rotation variables.

  12. Drag off of the CastToIKPawn node and get a reference to the MotionController_L, MotionController_R, and SkeletalMesh Components.

  13. Drag off of the MotionController_L Component reference, call GetWorldRotation, and pass it directly into the LeftHandWorldRotation setter.

  14. For the LeftHandWorldPosition you will need to do a little bit of vector math to subtract the difference between the Socket location and the actual bone location. Drag off of the SkeletalMesh reference and call GetSocketLocation twice.

  15. For the first GetSocketLocation pass in the string hand_lSocket as the In Socket Name parameter, and for the second pass in hand_l (see Figure 7.15). This will get the world location of the hand bone and hand Socket.

    Figure 7.15

    Figure 7.15 IKAnimBP: setting the hand variables and offsetting for controller positions in the IK

  16. Drag off of the GetSocketLocation for the Socket and subtract the location of the hand bone. This will give you the relative distance from the hand to the Socket in world space.

  17. Drag off of the MotionController_L reference, call GetWorldLocation, and subtract the relative distance calculated in step 16 from this world location.

  18. Attach the output of this Subtract node to the LeftHandWorldPosition setter.

  19. Repeat steps 13 through 18 but with the MotionController_R reference and the hand_rSocket and hand_r bone. If you need guidance, refer to Figure 7.15.

  20. Attach these setters to the HeadWorldTransform setter already in the graph.

To implement the two-bone IK nodes, you need to head to the Anim Graph:

  1. Once in the Anim Graph, create a new TwoBoneIK node.

  2. Create a getter for your LeftHandWorldPosition variable and attach it to the Effector Location of the two-bone IK.

  3. Pass in (X = 45, Y = –50, Z = 100) to the Joint Target Location. This is a point in Component space toward which the IK rotates. This value was obtained through trial and error, so feel free to change it to suit your needs.

  4. Select TwoBoneIK and change the IKBone to hand_l and the Effector Location Space to World Space (see Figure 7.16).

    Figure 7.16

    Figure 7.16 IKAnimBP: left-hand two-bone IK

  5. Create a new Transform (Modify) Bone node, setting the Bone to Modify property to hand_l, the Rotation Mode to Replace Existing, and the Rotation Space to World Space. This will allow you to rotate the hand because the IK will not handle this.

  6. Create a new variable getter for the LeftHandWorldRotation and connect it to the B input of a CombineRotators node.

  7. Pass in 180 degrees to the X value of the A input of this CombineRotators node (see Figure 7.16). This value was obtained by looking at the Skeleton’s initial bone rotation as you did in the “Setting Up Head IK” section.

  8. Connect the output of CombineRotators to the Rotation input of Transform (Modify) Bone.

  9. Repeat steps 2 through 8, replacing the LeftHandWorldRotation and Position with the right-hand variants, (X = –45, Y = –50, Z = 100) as the Joint Target Location, and 180 degrees in the Z for CombineRotators (see Figure 7.17).

    Figure 7.17

    Figure 7.17 IKAnimBP: right-hand two-bone IK

  10. Connect these new IK nodes between the Transform (Modify) Bone of the Head IK and the Component to the Local transform and you should be able to play in VR and see a full IK upper body (see Figure 7.18).

Figure 7.18

Figure 7.18 Upper-body IK example

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020