From 6cc0b60cee8d14ff86c30b946fb50853d4682581 Mon Sep 17 00:00:00 2001 From: Simon Jackson Date: Sat, 29 Jul 2017 21:00:33 +0100 Subject: [PATCH] Small tweak to enable a default lerp if no Lerp Curve supplied ALso control has a fixed start of 0 (for now) --- Scripts/Controls/RadialSlider.cs | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/Scripts/Controls/RadialSlider.cs b/Scripts/Controls/RadialSlider.cs index c2094c2..e8b8f7b 100644 --- a/Scripts/Controls/RadialSlider.cs +++ b/Scripts/Controls/RadialSlider.cs @@ -114,6 +114,7 @@ namespace UnityEngine.UI.Extensions m_image.type = Image.Type.Filled; m_image.fillMethod = Image.FillMethod.Radial360; m_image.fillOrigin = 3; + m_image.fillAmount = 0; } return m_image; } @@ -215,17 +216,17 @@ namespace UnityEngine.UI.Extensions _onTextValueChanged.Invoke(((int)(m_targetAngle * 360f)).ToString()); } -#if UNITY_EDITOR +//#if UNITY_EDITOR - private void OnValidate() - { - if (LerpToTarget && LerpCurve.length < 2) - { - LerpToTarget = false; - Debug.LogError("You need to define a Lerp Curve to enable 'Lerp To Target'"); - } - } -#endif +// private void OnValidate() +// { +// if (LerpToTarget && LerpCurve.length < 2) +// { +// LerpToTarget = false; +// Debug.LogError("You need to define a Lerp Curve to enable 'Lerp To Target'"); +// } +// } +//#endif #region Interfaces // Called when the pointer enters our GUI component.