SharedVRCStuff/BetterParamMerger/Editor/BetterParamMergerConfigEditor.cs
2026-01-07 18:52:55 -05:00

19 lines
545 B
C#

using UnityEditor;
using UnityEngine;
using gay.lilyy.BetterParamMerger;
namespace gay.lilyy.BetterParamMerger
{
[CustomEditor(typeof(BetterParamMergerConfig))]
public class BetterParamMergerConfigEditor : Editor
{
public override void OnInspectorGUI()
{
EditorGUILayout.HelpBox("This merges parameters in the optimizing stage, making sure it runs after all other preprocessors", MessageType.Info);
EditorGUILayout.Space();
DrawDefaultInspector();
}
}
}