Skip to content

Latest commit

 

History

History
68 lines (50 loc) · 2.61 KB

release_template.md

File metadata and controls

68 lines (50 loc) · 2.61 KB

Installation

You can install UniVRM using the UnityPackage or the UPM Package.

The UniVRM supports Unity ${unity_version} or later.

UnityPackage

Download the unitypackage, and drag and drop it to import the package into your project.

UPM Packages

click to expand

You can install these UPM packages via Package Manager in UnityEditor.

  • Open the package manager window: Window -> Package Manager
  • Click + at the top-right of the package manager window, then select Add package from git URL...
  • Specify UPM packages using URLs below.
UPM package git URL
com.vrmc.gltf https://github.com/vrm-c/UniVRM.git?path=/Assets/UniGLTF#v${version}
com.vrmc.univrm (VRM 0.x) https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM#v${version}
com.vrmc.vrm (VRM 1.0) https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM10#v${version}

You can also install via editing Packages/manifest.json directly.

// Packages/manifest.json
{
  "dependencies": {
    // ...
    "com.vrmc.gltf": "https://github.com/vrm-c/UniVRM.git?path=/Assets/UniGLTF#v${version}",
    "com.vrmc.univrm": "https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM#v${version}",
    "com.vrmc.vrm": "https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM10#v${version}",
    // ...
  }
}

Development Samples

click to expand
  • via UnityPackage
  • via UPM Package
    • You can find Samples in the Package Manager and then submit Import button.
      • Window -> Package Manager -> Packages: In Project -> VRM-1.0 or VRM

Release Notes

Warning

from v0.125.0. com.vrmc.vrmshaders is removed. com.vrmc.vrmshaders is no longer required in manifest.json.