完成编队 增加多个细节和小功能
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#if UNITY_EDITOR
|
||||
using UnityEditor;
|
||||
|
||||
namespace SmoothShakeFree
|
||||
{
|
||||
[CustomEditor(typeof(SmoothShakeFreePreset), true)]
|
||||
internal class ShakeBasePresetEditor : Editor
|
||||
{
|
||||
public override void OnInspectorGUI()
|
||||
{
|
||||
EditorUtility.DrawTitle("Smooth Shake Free");
|
||||
EditorUtility.DrawUILine(EditorUtility.SmoothShakeFreeColor, 1, 10);
|
||||
|
||||
serializedObject.Update();
|
||||
DrawPropertiesExcluding(serializedObject, "m_Script");
|
||||
serializedObject.ApplyModifiedProperties();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user