Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ousttrue committed Nov 13, 2024
1 parent 880ef2d commit 1fa3fee
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 8 deletions.
11 changes: 11 additions & 0 deletions docs/api/project/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@ https://docs.unity3d.com/ja/current/Manual/shader-compilation.html
https://docs.unity3d.com/ja/2022.3/Manual/class-GraphicsSettings.html#Always
:::

:::warning `Universal Render Pipeline/Lit` のビルド時間が長大

URP版のPBRシェーダー、 `Universal Render Pipeline/Lit` の初回ビルドに長時間かかることがわかりました。

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

初回ビルドに長時間(10時間など)かかることにご注意ください。
2回目以降はキャッシュが使用されるのでそこまではかかりません。
ビルド時間軽減のためのカスタムシェーダーを検討中です。
:::

### glTF ファイルを扱うアプリの場合

`com.vrmc.gltf` パッケージを用いて glTF ファイルを扱うアプリの場合、以下のシェーダをビルドに含める必要があります。
Expand Down
2 changes: 1 addition & 1 deletion docs/release/112/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ■v0.112~ ■
# ■v0.112.0 ~ ■v0.127.2

- `0.112.0` からサポートする Unity の最低バージョンを `2021.3LTS` に更新しました。

Expand Down
1 change: 1 addition & 0 deletions docs/release/128/index.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# ■v0.128~ ■

- `0.128.0` からサポートする Unity の最低バージョンを `2022.3LTS` に更新しました。

6 changes: 4 additions & 2 deletions docs/release/128/v0.128.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# 🚧 v0.128.0 Mtoon-1.0 URP版Export
# v0.128.0 Mtoon-1.0 URP版Export

https://github.com/vrm-c/UniVRM/milestone/95
https://github.com/vrm-c/UniVRM/milestone/95?closed=1

https://github.com/vrm-c/UniVRM/releases/tag/v0.128.0

## Mtoon-1.0 URP版 exporter

Expand Down
2 changes: 1 addition & 1 deletion docs/release/128/vv_next.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 🚧 nextnext.
# 🚧 next

https://github.com/vrm-c/UniVRM/milestone/96
4 changes: 2 additions & 2 deletions docs/release/128/vv_nextnext.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# 🚧 nextnext.
# 🚧 nextnext

https://github.com/vrm-c/UniVRM/milestone/96
https://github.com/vrm-c/UniVRM/milestone/97
16 changes: 16 additions & 0 deletions docs/univrm/error/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@

## export

:::warning NullReferenceException: at Assets/VRM/Runtime/IO/VrmGeometryBackup.cs:76

[NullReferenceException: Object reference not set to an instance of an object · Issue #2479 · vrm-c/UniVRM · GitHub](https://github.com/vrm-c/UniVRM/issues/2479)

- fixed `v0.128.0`

:::

:::warning IndexOutOfRangeException: at Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExporter_SharedVertexBuffer.cs:134

[Cannot Export Model as a VRM \[maybe lines topology\] · Issue #2472 · vrm-c/UniVRM · GitHub](https://github.com/vrm-c/UniVRM/issues/2472)

- fixed `v0.128.0`

:::

:::warning `0.x`, `1.0` PoseFreeze + blendshape 焼き付けバグ

[Pose Freeze によって BlendShape を ベイクすると他の BlendShape が壊れる · Issue #2465 · vrm-c/UniVRM · GitHub](https://github.com/vrm-c/UniVRM/issues/2465)
Expand Down
6 changes: 4 additions & 2 deletions release_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@
MERGE_PATTERN = re.compile(r"Merge pull request #(\d+)")
TEMPLATE = HERE / "release_template.md"
HTML_TEMPLATE = HERE / "html_template.html"
RELEASE_NOTE_DIR = "112"
UNITY_VERSION = "2021.3 LTS"
# RELEASE_NOTE_DIR = "112"
# UNITY_VERSION = "2021.3 LTS"
RELEASE_NOTE_DIR = "128"
UNITY_VERSION = "2022.3 LTS"


def gen(template: str, version: str, hash: str):
Expand Down

0 comments on commit 1fa3fee

Please sign in to comment.