banner
Olimi

Olimi

SCUT 小菜鸡
github
bilibili

Introduction to 3D Game Engine Course 5 - Character Animation

Preface#

The content of this column is from the online course "Fundamentals of 3D Game Engine Architecture and Design" on XuetangX. I have transformed it into a text and image version (I personally prefer text tutorials, which are much faster to read) for easy reference.
Original course link: Fundamentals of 3D Game Engine Architecture and Design.

Character Animation#

Overview and Representation of Character Animation#

Characters refer to the carriers that drive the game plot, including players, non-players, monsters, enemies, etc.

Representation of Characters#

  • Cel Animation
    Insert Image Description Here

  • Rigid Layered Animation
    Insert Image Description Here

  • Vertex-Based Animation
    Insert Image Description Here

  • Morph Target Animation
    Insert Image Description Here

  • Skeletal Skinning Animation
    Insert Image Description Here
    Skeletal skinning animation is the most commonly used rendering technique.

Character animation modeling process in games:

  1. Skinning: Create the mesh model of the character.

  2. Skeleton: Create joints and joint hierarchy, and bind joints to corresponding mesh vertices.

  3. Skin or clothing: Define the material and texture mapping of the mesh.

  4. Character animation: Describe the character's actions and define the movement of the character's skeleton.

Examples:

Insert Image Description Here

Important Concepts in Skeletal Skinning Animation#

  • Degrees of Freedom and Joint Types:
    Insert Image Description Here
    Insert Image Description Here
    Insert Image Description Here
    Insert Image Description Here

  • Joint Space Transformation
    Insert Image Description Here

  • Mesh Vertex and Joint Binding
    Insert Image Description Here

  • Motion Synthesis and Motion Control

Important concepts in motion synthesis:

Animation Clip: Refers to the local poses that make up the actions of a game character, such as raising hands, jumping, walking or running strides, etc.

Keyframe or Key Pose: Refers to the important poses set at specified time points in an animation clip. Through keyframes, intermediate poses, or intermediate frames, can be automatically generated using linear interpolation or curve interpolation algorithms. Keyframes can be seen as static images of character poses. An animation clip is composed of several keyframes and intermediate frames, and all frames are displayed at the specified time points. An animation clip is a local pose of a character animation and is dynamic.

Example:
Insert Image Description Here

Animation clip synthesis refers to the calculation of corresponding joint positions. The methods for automatic synthesis of character actions include:

  1. Linear blending
    Insert Image Description Here
  2. Skeletal subdivision blending
    Insert Image Description Here
  3. Additive blending.
    Insert Image Description Here

Examples of Character Animation Implementation#

OGEE Character Animation#

OGRE Character Animation Rendering Process:
Insert Image Description Here
OGRE Node Types and Skeleton Tree Structure:
Insert Image Description Here
Relationship between Joint Nodes and Scene Graph:
Insert Image Description Here
Main Classes of OGRE Character Animation:
Insert Image Description Here
Below are descriptions of several core classes of OGRE character animation:
Insert Image Description Here
Insert Image Description Here
Example of Skeletal Skinning Animation in Character Animation:
Insert Image Description Here

Summary of OGRE Character Animation:
Insert Image Description Here
Insert Image Description Here

Panda3D Character Animation#

Concepts of Character Animation in Panda3D:
Insert Image Description Here
Class Diagram of Character Representation in Panda3D:
Insert Image Description Here
Class for Local Motion of Characters:
Insert Image Description Here
Finally, the Panda3D Animation Class:
Insert Image Description Here

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.