better param merger
This commit is contained in:
parent
b475edd583
commit
54c79328f6
13 changed files with 233 additions and 0 deletions
19
BetterParamMerger/Editor/BetterParamMergerConfigEditor.cs
Normal file
19
BetterParamMerger/Editor/BetterParamMergerConfigEditor.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue