UniVRM is a gltf-based VRM format implementation for Unity. English is here https://vrm.dev/en/ . 日本語 はこちら https://vrm.dev/
Go to file
2021-05-06 16:29:08 +09:00
.github/ISSUE_TEMPLATE update template 2021-04-05 20:35:28 +09:00
Assets remove dependency on UniJson from format 2021-05-06 16:29:08 +09:00
glTF@838b607505 add glTF & VRM spec schema repository as submodule. 2021-02-18 20:04:14 +09:00
Packages fix glTF_KHR_materials_unlit. glTF_KHR_texture_transform, targetNames 2020-11-20 12:16:16 +09:00
ProjectSettings Validation, 多言語化を UniGLTF 配下に移動 2021-04-19 15:37:50 +09:00
Tests/Models/Alicia_vrm-0.51 Update AliciaSolid to 0.51 2019-09-04 14:06:24 +09:00
vrm-specification@9a02cc2302 update JsonSchema. VRMC_node_collider is removed. 2021-04-30 12:47:06 +09:00
.gitattributes Add .gitattributes to use LF 2018-12-28 23:40:21 +09:00
.gitignore refactoring vrm shaders asmdef 2021-04-08 20:59:43 +09:00
.gitmodules Add MToon submodule in new directory. 2021-04-16 19:56:09 +09:00
LICENSE.txt License To VRM Consortium 2020-05-21 15:53:19 +09:00
NUnit3To2FormatConverter.py JenkinsHelper 2019-01-09 17:01:27 +09:00
README.ja.md updated README 2021-04-07 17:39:15 +09:00
README.md added a couple of words 2021-04-08 11:21:50 +09:00
right_latest.jpg update README.ja.md 2021-04-06 13:02:36 +09:00

UniVRM

https://github.com/vrm-c/UniVRM

UniVRM is a Unity implementation of VRM. It can create, import and export VRM models.

VRM is a file format for using 3d humanoid avatars (3D models) in VR applications.
It is based on glTF2.0. Anyone is free to use it.

The imported VRM model has the following Data:

License

Installation

https://vrm.dev/en/docs/univrm/install/

Stable Version

Versions without bug fixes will be picked up as stable versions.
To download the stable version, click the release tag (marked as Latest) as shown in the image below:

  1. Download UniVRM-0.xx.unitypackage
  2. Import UniVRM-0.xx.unitypackage into the Unity project

Latest Version

The latest version is marked as Pre-release:

  1. Go to the releases page
  2. Download the latest UniVRM-0.xx.unitypackage
  3. Import UniVRM-0.xx.unitypackage into the Unity project

Script Samples

Contributing to UniVRM

Use the commands below to clone UniVRM repository and then open the UniVRM folder by Unity.

$ git clone https://github.com/vrm-c/UniVRM.git
$ cd UniVRM
# Update submodules such as MToon, etc.
$ git submodule update --init --recursive

See contributing guidelines.

UPM

https://vrm.dev/en/docs/univrm/install/univrm_upm/

Copy and paste the following git urls in Packages/manifest.json for UniVRM installation.
To upgrade/downgrade UniVRM version, for example, replace v0.66.0 with v0.71.0 or v0.63.2.

{
  "dependencies": {
    // ...
    "com.vrmc.vrmshaders": "https://github.com/vrm-c/UniVRM.git?path=/Assets/VRMShaders#v0.66.0",
    "com.vrmc.unigltf": "https://github.com/vrm-c/UniVRM.git?path=/Assets/UniGLTF#v0.66.0",
    "com.vrmc.univrm": "https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM#v0.66.0",
    // ...
}