mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 18:55:06 +08:00
Add warning for legacy (non-ndmf) aao (#458)
* chore: restore some functions in AvatarProcessor for compile time legacy AAO compatibility * feat: add warning for legacy Avatar Optimizer
This commit is contained in:
parent
3f681a08de
commit
46c1f7ce49
@ -22,6 +22,7 @@
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
@ -60,5 +61,14 @@ namespace nadena.dev.modular_avatar.core.editor
|
||||
{
|
||||
ndmf.AvatarProcessor.ProcessAvatar(avatarGameObject);
|
||||
}
|
||||
|
||||
// ReSharper disable once InconsistentNaming
|
||||
// ReSharper disable once MemberCanBeMadeStatic.Global
|
||||
[Obsolete("This is only for compile time compatibility with legacy AAO")]
|
||||
public int callbackOrder => throw new NotImplementedException();
|
||||
|
||||
[Obsolete("This is only for compile time compatibility with legacy AAO")]
|
||||
// ReSharper disable once MemberCanBeMadeStatic.Global
|
||||
public bool OnPreprocessAvatar(GameObject avatarGameObject) => throw new NotImplementedException();
|
||||
}
|
||||
}
|
@ -0,0 +1,46 @@
|
||||
#if LEGACY_AVATAR_OPTIMIZER
|
||||
using UnityEditor;
|
||||
|
||||
namespace nadena.dev.modular_avatar.core.editor
|
||||
{
|
||||
[InitializeOnLoad]
|
||||
public class LegacyAvatarOptimizerWarning
|
||||
{
|
||||
static LegacyAvatarOptimizerWarning()
|
||||
{
|
||||
if (SessionState.GetBool("nadena.dev.legacy-aao-warning", false)) return;
|
||||
SessionState.SetBool("nadena.dev.legacy-aao-warning", true);
|
||||
EditorApplication.delayCall += DisplayWarning;
|
||||
}
|
||||
|
||||
private static void DisplayWarning()
|
||||
{
|
||||
var isJapanese = true;
|
||||
|
||||
while (true)
|
||||
{
|
||||
string message, readInOtherLang;
|
||||
if (isJapanese)
|
||||
{
|
||||
message = "1.4.x以前のAvatar Optimizerがインストールされているようです。\n" +
|
||||
"現在お使いのModular Avatarでは、1.4.x以前のAvatar Optimizerと互換性がありません。\n" +
|
||||
"Avatar Optimizerを1.5.0以降に更新してください!";
|
||||
readInOtherLang = "Read in English";
|
||||
}
|
||||
else
|
||||
{
|
||||
message = "We found Avatar Optimizer 1.4.x or older is installed!\n" +
|
||||
"This version of Modular Avatar is not compatible with Avatar Optimizer 1.4.x or older!\n" +
|
||||
"Please upgrade Avatar Optimizer to 1.5.0 or later!";
|
||||
readInOtherLang = "日本語で読む";
|
||||
}
|
||||
|
||||
if (EditorUtility.DisplayDialog("Modular Avatar", message, "OK", readInOtherLang))
|
||||
return;
|
||||
|
||||
isJapanese = !isJapanese;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6c944e4e971248d59198fa569a47569f
|
||||
timeCreated: 1695800488
|
@ -29,6 +29,11 @@
|
||||
"autoReferenced": false,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [
|
||||
{
|
||||
"name": "com.anatawa12.avatar-optimizer",
|
||||
"expression": "(,1.5.0-rc.8)",
|
||||
"define": "LEGACY_AVATAR_OPTIMIZER"
|
||||
}
|
||||
],
|
||||
"noEngineReferences": false
|
||||
}
|
Loading…
Reference in New Issue
Block a user