maint: hotreload updated to 1.13.7

This commit is contained in:
Chris
2026-01-06 22:42:15 -05:00
parent 796dbca5d8
commit 105da8850a
128 changed files with 3538 additions and 738 deletions

View File

@@ -5,6 +5,7 @@ using System.Threading.Tasks;
using UnityEditor;
using System.Collections.Generic;
using System.Linq;
using SingularityGroup.HotReload.Editor.Localization;
namespace SingularityGroup.HotReload.Editor {
internal static class EditorWindowHelper {
@@ -37,9 +38,9 @@ namespace SingularityGroup.HotReload.Editor {
NeedsRecompile
}
private static readonly Dictionary<NotificationStatus, GUIContent> notificationContent = new Dictionary<NotificationStatus, GUIContent> {
{ NotificationStatus.Patching, new GUIContent("[Hot Reload] Applying patches...")},
{ NotificationStatus.NeedsRecompile, new GUIContent("[Hot Reload] Unsupported Changes detected! Recompiling...")},
private static Dictionary<NotificationStatus, GUIContent> notificationContent => new Dictionary<NotificationStatus, GUIContent> {
{ NotificationStatus.Patching, new GUIContent(Translations.Miscellaneous.NotificationPatching)},
{ NotificationStatus.NeedsRecompile, new GUIContent(Translations.Miscellaneous.NotificationNeedsRecompile)},
};
static Type gameViewT;