Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Let's open the AtomsRobot.hip file and duplicate the robot head, duplicate the robot head creating multiple expressionthen edit the mesh to create multiple facial expressions.

Then select the meshes and the original head and create a blend shape deformer.


Exporting meshes

You need to export the blend shapes target. If you use the variation builder, Atoms automatically exports the blend shapes data inside the meshes.

If you want export them manually, open the atoms mesh exporter from the atoms menu: Atoms > Export > Mesh exporter

Set the output path, then turn on the "export skin weight option". Inside the skeleton path file, pick the atomsRobot.atomsskel from the AtomsMaya/data folder. Then select the robot Hips joint and press the refresh button. Finally turn on the "export blend shapes" option, select the mesh you want to export and press the "Export" button. This tool automatically writes points, normals, id and name of each target inside the mesh file.


Note

If you want to inspect the mesh content, open the file as a MapMetadata in python or c++, the blend shapes data are stored inside the "blendShapes" key

Code Block
languagepy
import AtomsCore
mesh_file = "robot1_head_blend.geos"
ark = AtomsCore.Archive()
if ark.readFromFile(mesh_file):
    mesh = AtomsCore.MapMetadata()
    mesh.deserialise(ark)
    for geo in mesh.keys(): #iterate over each geo
        targets_data = mesh[geo]["blendShapes"]
        for i in range(len(targets_data)):
            target = targets_data[i]
            points = target["P"].value()
            normals = target["N"].value()
            id = target["id"].value()
            name = target["name"].value()
            print id, name





Importing meshes

Create a new scene , and now import the robot variation table. From the atoms menu execute Atoms > Variations > Import variation json. Set Select the robot.json file form from the AtomsHoudini\16.0.671\data\variations folder. This will load the robot variation table into the scene.

Open the variation manager from the atoms menu: Atoms > Variations > Agents Variation Manager. Select the atomsRobot from the column on the left and then go inside the Geometry tab. Replace the robot1_head path with the mesh you just exported. Now press ctrl+s or from the widget menu execute File > Register to Atoms to save the changes.



Setting up variations
  • Create and agent group node.
  • Add a grid layout and set the grid size to 5,0,5
  • Add a state machine module
  • Add a variation module and set the variationName attribute to "Robot1"
  • Change the display type to variations
  • Rewind the scene


Setting targets weight

The target weights are controlled by double metadatas. The metadata name should have the following follow this convention:

AgentTypeName_VariationGeometryName_TargetIndex

In our case the following metadata names are valid:

  • atomsRobot_robot1_head_0
  • atomsRobot_robot1_head_1
  • atomsRobot_robot1_head_2
  • atomsRobot_robot1_head_3

The target index is the order used by the Houdini blend shapes shape deformer, so the 0 index is the first inputblend shape, the 1 index is the second one and so on.

We can add and control these metadatas using the AddMetadata module

  • Add an "AddMetadata" behaviour module
  • Set the name attribute to atomsRobot_robot1_head_0
  • Set the type attribute to double
  • Set the double value attribute to 1.0
  • Rewind the scene

Try to add more addMetadata modules on the same agent group to control the atomsRobot_robot1_head_1, atomsRobot_robot1_head_2 etc.. metadatas. You can also add keyframes on the doubleValue attribute to animate the blend shapes.


Adding animation

To add more complex animation or animation cycles to the blend shapes we can use the blendShapesAnim module. Before you can use this module, you have to export some animation curves from your setup scene. Open the atomsRobot scene where you created the blendshapes and add some keyframes on the targets weight target weights of the blend shape deformer.




Now select the robot head and open the blend shapes anim exporter from the atoms menu: Atoms > Export > Blend shapes anim exporter.

Set the output path and the frame range, select the head mesh and press the run button.

Go back to the atoms scene and remove all the addMetadata modules.

Add a blendShapesAnim behaviour module. Inside the animData attribute press the + button to add a new row.

Type the following string "atomsRobot, robot1_head, triggerAnim", the path of the animation you exported, "loop" as in the picture. The first entry is the agent type, the second is the geometry name, the third is the metadata used as trigger, the fourth is the animation data fileĀ  file and the last one tells the module to loop the animation.

The animation will be activated by the triggerAnim metadata. Create an addMetadata module and place it before the blendShapesAnim module. Set the name attribute to triggerAnim, Change the type to double and set the doubleValue to 1.0.

Now rewind the scene and press play.


You can add multiple rows to control multiple animations at the same time.

As said, the animation is controlled by the triggerAnim metadata. We can use an area trigger to drive this metadata.

First let's change the agent state to 1 inside the state machine to make them walk. Inside the addMetadata module change the double value to 0 (the area trigger module will drives this value). Now create an areaTrigger module and create a plane in the scene. Connect the plane to the areaTrigger module (remember to connect also the translation/rotation/scale) and set the metadata name attribute to triggerAnim, the double value to 1.0, the blend in and out to 10 and the random delay in and out to 5. Move the area trigger before the blendShapeAnim module. Rewind the scene and press play.