傻逼Yooasset 新版本各种问题还是用老版本吧!

This commit is contained in:
DESKTOP-5RP3AKU\Jisol
2024-10-15 02:12:55 +08:00
parent f6c362d356
commit d7e6b45f5f
184 changed files with 10075 additions and 13465 deletions

View File

@@ -30,7 +30,14 @@ namespace SHFrame.Editor
}
else if (EditorApplication.isPlaying)
{
EditorGUILayout.LabelField("Current Procedure", t.CurrentProcedure == null ? "None" : t.CurrentProcedure.GetType().ToString());
try
{
EditorGUILayout.LabelField("Current Procedure", t.CurrentProcedure == null ? "None" : t.CurrentProcedure.GetType().ToString());
}
catch
{
// ignored
}
}
EditorGUI.BeginDisabledGroup(EditorApplication.isPlayingOrWillChangePlaymode);

View File

@@ -17,13 +17,13 @@ namespace SHFrame.Editor
{
private static readonly string[] RuntimeAssemblyNames =
{
"SHFrame",
"Assembly-CSharp",
"SHFrame.Runtime",
};
private static readonly string[] RuntimeOrEditorAssemblyNames =
{
"SHFrame",
"Assembly-CSharp",
"SHFrame.Runtime",
};