Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 895 Bytes

README.md

File metadata and controls

46 lines (36 loc) · 895 Bytes

CMUMocap

CMUMocap is a Unity package that contains humanoid animations from the Carnegie Mellon University Motion Capture Database.

How To Install

This package uses the scoped registry feature to resolve package dependencies. Please add the following sections to the manifest file (Packages/manifest.json).

To the scopedRegistries section:

{
  "name": "Keijiro",
  "url": "https://registry.npmjs.com",
  "scopes": [ "jp.keijiro" ]
}

To the dependencies section:

"jp.keijiro.cmu-mocap": "1.0.0"

After changes, the manifest file should look like below:

{
  "scopedRegistries": [
    {
      "name": "Keijiro",
      "url": "https://registry.npmjs.com",
      "scopes": [ "jp.keijiro" ]
    }
  ],
  "dependencies": {
    "jp.keijiro.cmu-mocap": "1.0.0",
    ...