The pose json used in VRM Posing Desktop uses Unity's HumanPose class. This makes it easy to make it compatible with your Unity products.
- Make a character take a specific pose on the character selection screen in a game.
- Preview display in avatar creation applications, etc.
using HumanPoseUtil;
// set pose
public static void ApplyHumanPose(Animator animator, HumanPose pose);
// get pose
public static HumanPose ExtractHumanPose(Animator animator);
To simplify usage, I have included free assets related to 3D characters and file browsers.
Please feel free to remove any unnecessary assets and use the demo scripts as a reference to modify the implementation as you see fit.
This package wraps Unity's HumanPoseHandler for easier handling.
Official Unity documentation is here.