forked from vrm-c/vrm.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
61 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# ■v0.112~ ■ | ||
|
||
- `0.112.0` からサポートする Unity の最低バージョンを `2021.3LTS` に更新しました。 | ||
|
||
- `0.124.1 ` から3桁目のバージョン番号をインクリメントします。 | ||
|
||
- runtime importer が使用する API に breaking change があると判断された場合に、2桁目をインクリメントして、3桁目を0に戻します。 | ||
- 2桁目が同じ範囲でバージョンを上げても、使用アプリケーションのソースコードの修正が発生しないことを期待できます。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# v0.124.1 fixed bake bug & NullReferenceExeption | ||
|
||
https://github.com/vrm-c/UniVRM/releases/tag/v0.124.1 | ||
|
||
https://github.com/vrm-c/UniVRM/milestone/88?closed=1 | ||
|
||
## 🔥 正規化バグ | ||
|
||
:::danger BlendShape Bake のバグ | ||
|
||
`v0.124.0` | ||
https://github.com/vrm-c/UniVRM/pull/2329 で発生。 | ||
|
||
::: | ||
|
||
- https://github.com/vrm-c/UniVRM/pull/2339 | ||
|
||
## SkinnedMeshRenderer.bones に null が含まれていてもエクスポートできるようにする | ||
|
||
:::tip | ||
SkinnedMeshRenderer.bones に null が含まれるのは、データ異常とみなしていました。 | ||
シーン上でボーンを削除してからエクスポートする操作をした場合に発生する場合があるらしく、一定の需要があるようなのでエラーを回避してエクスポートできるようにしました。 | ||
|
||
エクスポート時に | ||
`NullReferenceExeption と MeshAttachInfo` もしくは `AvatarBuilder duplicate human bone Hips` というエラーメッセージが発生する場合に関連している可能性があります。 | ||
::: | ||
|
||
- [Do not throw an exception even if SkinedMeshRenderer.bones contains null. · Issue #2326 · vrm-c/UniVRM · GitHub](https://github.com/vrm-c/UniVRM/issues/2326) |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# AvatarBuilder duplicate human bone 'Hips' | ||
|
||
## Finally, SkinnedMeshRenderers.bones is now allowed to contain null | ||
|
||
https://github.com/vrm-c/UniVRM/issues/2326 | ||
|
||
It is now possible to export from `v0.124.1`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# NullReferenceExeption(MeshAttachInfo) | ||
|
||
- [\[MeshAttachInfo.cs:23\] Null reference exeption on 2022.3.6f1 · Issue #2206 · vrm-c/UniVRM · GitHub](https://github.com/vrm-c/UniVRM/issues/2206) | ||
|
||
## at Assets/UniGLTF/Runtime/MeshUtility/MeshAttachInfo.cs:23 | ||
|
||
```cs | ||
Mesh.bindposes = Bones.Select(x => x.worldToLocalMatrix * dst.transform.localToWorldMatrix).ToArray(); | ||
``` | ||
|
||
Has the gameobject used for skinning been deleted? | ||
|
||
## Finally, SkinnedMeshRenderers.bones is now allowed to contain null | ||
|
||
https://github.com/vrm-c/UniVRM/issues/2326 | ||
|
||
It is now possible to export from `v0.124.1`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters