From 04c3f10144bd74a8976993831a08c4b62341c951 Mon Sep 17 00:00:00 2001 From: bd_ Date: Fri, 21 Mar 2025 18:52:00 -0700 Subject: [PATCH] fix: expressions menu icon compression breaks on iOS builds --- CHANGELOG-PRERELEASE-jp.md | 1 + CHANGELOG-PRERELEASE.md | 1 + CHANGELOG-jp.md | 1 + CHANGELOG.md | 1 + .../FixupPasses/FixupExpressionsMenuPass.cs | 21 ++++++++++++------- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG-PRERELEASE-jp.md b/CHANGELOG-PRERELEASE-jp.md index 312effa9..ed08877e 100644 --- a/CHANGELOG-PRERELEASE-jp.md +++ b/CHANGELOG-PRERELEASE-jp.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - [#1508] テクスチャのサイズが4の倍数でない場合に、エクスプレッションメニューアイコンの自動圧縮が失敗する問題を修正 +- [#1513] iOSビルドでエクスプレッションメニューアイコンの圧縮が壊れる問題を修正 ### Changed diff --git a/CHANGELOG-PRERELEASE.md b/CHANGELOG-PRERELEASE.md index b491d49c..59dc2349 100644 --- a/CHANGELOG-PRERELEASE.md +++ b/CHANGELOG-PRERELEASE.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - [#1508] Fix an issue where automatic compression of expressions menu icons would fail when the texture dimensions were not divisible by four. +- [#1513] Expression menu icon compression broke on iOS builds ### Changed diff --git a/CHANGELOG-jp.md b/CHANGELOG-jp.md index 2deec56f..9f33473c 100644 --- a/CHANGELOG-jp.md +++ b/CHANGELOG-jp.md @@ -23,6 +23,7 @@ Modular Avatarの主な変更点をこのファイルで記録しています。 - [#1504] 一部の状況で内部の`DelayDisable`レイヤーが不要なオブジェクトを参照しないように変更 - これにより、オブジェクトがアニメーションされているかどうかを追跡するAAOなどのツールとの互換性が向上します - [#1508] テクスチャのサイズが4の倍数でない場合に、エクスプレッションメニューアイコンの自動圧縮が失敗する問題を修正 +- [#1513] iOSビルドでエクスプレッションメニューアイコンの圧縮処理が壊れる問題を修正 ### Changed - [#1476] ModularAvatarMergeAnimator と ModularAvatarMergeParameter を新しい NDMF API (`IVirtualizeMotion` と `IVirtualizeAnimatorController`) を使用するように変更 diff --git a/CHANGELOG.md b/CHANGELOG.md index f351aaae..96647d22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This helps improve compatibility with AAO and other tools that track whether objects are animated - [#1508] Fix an issue where automatic compression of expressions menu icons would fail when the texture dimensions were not divisible by four. +- [#1513] Expression menu icon compression broke on iOS builds ### Changed - [#1476] Switch ModularAvatarMergeAnimator and ModularAvatarMergeParameter to use new NDMF APIs (`IVirtualizeMotion` and `IVirtualizeAnimatorController`) diff --git a/Editor/FixupPasses/FixupExpressionsMenuPass.cs b/Editor/FixupPasses/FixupExpressionsMenuPass.cs index 4fe33748..b30a0b91 100644 --- a/Editor/FixupPasses/FixupExpressionsMenuPass.cs +++ b/Editor/FixupPasses/FixupExpressionsMenuPass.cs @@ -2,8 +2,6 @@ using System; using System.Collections.Generic; -using System.Collections.Immutable; -using System.Linq; using UnityEditor; using UnityEngine; using VRC.SDK3.Avatars.ScriptableObjects; @@ -119,11 +117,20 @@ namespace nadena.dev.modular_avatar.core.editor } } -#if UNITY_ANDROID - internal const TextureFormat TargetFormat = TextureFormat.ASTC_4x4; -#else - internal const TextureFormat TargetFormat = TextureFormat.DXT5; -#endif + internal static TextureFormat TargetFormat + { + get + { + switch (EditorUserBuildSettings.activeBuildTarget) + { + case BuildTarget.StandaloneWindows64: + return TextureFormat.DXT5; + default: + return TextureFormat.ASTC_4x4; + } + } + } + private static Texture2D MaybeScaleIcon(BuildContext context, Texture2D original) {