mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-06 14:45:06 +08:00
197d847514
Closes: #676
21 lines
445 B
C#
21 lines
445 B
C#
#region
|
|
|
|
using HarmonyLib;
|
|
using UnityEditor;
|
|
|
|
#endregion
|
|
|
|
namespace nadena.dev.modular_avatar.core.editor.HarmonyPatches
|
|
{
|
|
internal class PatchLoader
|
|
{
|
|
[InitializeOnLoadMethod]
|
|
static void ApplyPatches()
|
|
{
|
|
var harmony = new Harmony("nadena.dev.modular_avatar");
|
|
|
|
SnoopHeaderRendering.Patch(harmony);
|
|
HideScaleAdjusterFromPrefabOverrideView.Patch(harmony);
|
|
}
|
|
}
|
|
} |