SamsonGame/Assets/Sources/Feel/MMTools/Editor/MMGUI/MMHealthBarEditor.cs

40 lines
1.2 KiB
C#
Raw Normal View History

2021-12-29 20:50:11 +03:00
using UnityEngine;
using MoreMountains.Tools;
using UnityEditor;
using UnityEngine.UI;
namespace MoreMountains.Tools
{
[CustomEditor(typeof(MMHealthBar),true)]
/// <summary>
/// Custom editor for health bars (mostly a switch for prefab based / drawn bars
/// </summary>
public class HealthBarEditor : Editor
{
public MMHealthBar HealthBarTarget
{
get
{
return (MMHealthBar)target;
}
}
public override void OnInspectorGUI()
{
serializedObject.Update();
if (HealthBarTarget.HealthBarType == MMHealthBar.HealthBarTypes.Prefab)
{
Editor.DrawPropertiesExcluding(serializedObject, new string[] {"Size","BackgroundPadding", "SortingLayerName", "InitialRotationAngles", "ForegroundColor", "DelayedColor", "BorderColor", "BackgroundColor", "Delay", "LerpFrontBar", "LerpFrontBarSpeed", "LerpDelayedBar", "LerpDelayedBarSpeed", "BumpScaleOnChange", "BumpDuration", "BumpAnimationCurve" });
}
if (HealthBarTarget.HealthBarType == MMHealthBar.HealthBarTypes.Drawn)
{
Editor.DrawPropertiesExcluding(serializedObject, new string[] {"HealthBarPrefab" });
}
serializedObject.ApplyModifiedProperties();
}
}
}