UniVRM is a gltf-based VRM format implementation for Unity. English is here https://vrm.dev/en/ . 日本語 はこちら https://vrm.dev/
Go to file
2021-08-18 17:56:04 +09:00
.github/ISSUE_TEMPLATE ISSUE_TEMPLATE を簡略化 2021-08-12 21:40:18 +09:00
Assets namespace 2021-08-18 17:56:04 +09:00
glTF@838b607505 add glTF & VRM spec schema repository as submodule. 2021-02-18 20:04:14 +09:00
Packages update settings 2021-08-04 15:02:26 +09:00
ProjectSettings update settings 2021-08-04 15:02:26 +09:00
Tests/Models/Alicia_vrm-0.51 Update AliciaSolid to 0.51 2019-09-04 14:06:24 +09:00
vrm-specification@04e3bb2525 update JsonSchema to VRM-1.0beta 2021-08-06 16:27:50 +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 mv VRM.Samples to VRM/Samples 2021-08-18 17:40:06 +09:00
README.md Update unity version & end preview release 2021-08-12 19:15:57 +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.

From version v0.80.0, UniVRM supports Unity-2019.4LTS or later.

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/

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

UniVRM10-* is vrm-1.0 development version package.

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",
    // ...
}