UniVRM/Assets/VRM
Isamu Mogi dc8b841f1e Unity6でGraphicsSettings.renderPipelineAssetがObsolete警告を出すのに対応
Unity6でGraphicsSettings.renderPipelineAssetがObsoleteになり、次のような警告が出ていました。

```
Assets/VRM/Editor/BuildClass.cs(31,13): warning CS0618: 'GraphicsSettings.renderPipelineAsset' is obsolete: 'renderPipelineAsset has been deprecated. Use defaultRenderPipeline instead (UnityUpgradable) -> defaultRenderPipeline'
```

Unity6以降では、代わりとして推奨されるフィールド defaultRenderPipeline を使うようにしました。
2025-01-29 19:45:42 +09:00
..
Documentation
Editor Unity6でGraphicsSettings.renderPipelineAssetがObsolete警告を出すのに対応 2025-01-29 19:45:42 +09:00
Icons set icon 2024-12-10 16:12:25 +09:00
MToon Extract MToon0X shaders from the Resouces directory 2024-07-29 20:02:58 +09:00
Runtime set icon 2024-12-10 16:12:25 +09:00
Samples~ jslib 2025-01-27 19:34:28 +09:00
Tests Fix VRM0X Tests 2024-07-30 00:30:22 +09:00
CHANGELOG.md
CHANGELOG.md.meta
Documentation.meta
Editor.meta
Icons.meta set icon 2024-12-10 16:12:25 +09:00
LICENSE.md
LICENSE.md.meta
MToon.meta mv MToon0X from VRMShaders.VRM to VRM 2024-07-19 17:00:09 +09:00
package.json UniVRM-0.128.1 2024-12-23 14:32:27 +09:00
package.json.meta
README.md
README.md.meta
README.url
README.url.meta
Runtime.meta
Tests.meta

VRM

The core library for UniVRM-0.XX.

Import VRM (Unity 2019.3.4f1~)

Window -> Package Manager -> Add package from git URL and add the followings in order:

  • https://github.com/vrm-c/UniVRM.git?path=/Assets/VRMShaders
  • https://github.com/vrm-c/UniVRM.git?path=/Assets/VRM => depends on VRMShaders

or add the package name and git URL in Packages/manifest.json:

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