diff --git a/README.md.meta b/README.md.meta new file mode 100644 index 0000000..462d66a --- /dev/null +++ b/README.md.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: a7b682f292cfba6438971b2bc7e90705 +DefaultImporter: + userData: diff --git a/Scripts.meta b/Scripts.meta new file mode 100644 index 0000000..4b89cef --- /dev/null +++ b/Scripts.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 9001b012db436b1438e03cdda2954484 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Scripts/Accordion.meta b/Scripts/Accordion.meta new file mode 100644 index 0000000..c802467 --- /dev/null +++ b/Scripts/Accordion.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 82ea50ac9a6ea8940a71f86ea8d13bf0 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Scripts/Accordion/UIAccordion.cs b/Scripts/Accordion/Accordion.cs similarity index 74% rename from Scripts/Accordion/UIAccordion.cs rename to Scripts/Accordion/Accordion.cs index 03bec28..7eb3dc4 100644 --- a/Scripts/Accordion/UIAccordion.cs +++ b/Scripts/Accordion/Accordion.cs @@ -1,41 +1,41 @@ -///Credit ChoMPHi -///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ - -using UnityEngine; -using System.Collections; - -namespace UnityEngine.UI -{ - [RequireComponent(typeof(VerticalLayoutGroup)), RequireComponent(typeof(ContentSizeFitter)), RequireComponent(typeof(ToggleGroup))] - public class UIAccordion : MonoBehaviour { - - public enum Transition - { - Instant, - Tween - } - - [SerializeField] private Transition m_Transition = Transition.Instant; - [SerializeField] private float m_TransitionDuration = 0.3f; - - /// - /// Gets or sets the transition. - /// - /// The transition. - public Transition transition - { - get { return this.m_Transition; } - set { this.m_Transition = value; } - } - - /// - /// Gets or sets the duration of the transition. - /// - /// The duration of the transition. - public float transitionDuration - { - get { return this.m_TransitionDuration; } - set { this.m_TransitionDuration = value; } - } - } +///Credit ChoMPHi +///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ + + +namespace UnityEngine.UI.Extensions +{ + [RequireComponent(typeof(VerticalLayoutGroup), typeof(ContentSizeFitter), typeof(ToggleGroup))] + [AddComponentMenu("UI/Extensions/Accordion/Accordion Group")] + public class Accordion : MonoBehaviour + { + + public enum Transition + { + Instant, + Tween + } + + [SerializeField] private Transition m_Transition = Transition.Instant; + [SerializeField] private float m_TransitionDuration = 0.3f; + + /// + /// Gets or sets the transition. + /// + /// The transition. + public Transition transition + { + get { return this.m_Transition; } + set { this.m_Transition = value; } + } + + /// + /// Gets or sets the duration of the transition. + /// + /// The duration of the transition. + public float transitionDuration + { + get { return this.m_TransitionDuration; } + set { this.m_TransitionDuration = value; } + } + } } \ No newline at end of file diff --git a/Scripts/Accordion/UIAccordionElement.cs.meta b/Scripts/Accordion/Accordion.cs.meta similarity index 78% rename from Scripts/Accordion/UIAccordionElement.cs.meta rename to Scripts/Accordion/Accordion.cs.meta index 283b746..a82f6a6 100644 --- a/Scripts/Accordion/UIAccordionElement.cs.meta +++ b/Scripts/Accordion/Accordion.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c77f1d511e8ee4445a42bc41d95bb11f +guid: 4387cc9950f37044c92f9d144a2b1002 MonoImporter: serializedVersion: 2 defaultReferences: [] diff --git a/Scripts/Accordion/UIAccordionElement.cs b/Scripts/Accordion/AccordionElement.cs similarity index 78% rename from Scripts/Accordion/UIAccordionElement.cs rename to Scripts/Accordion/AccordionElement.cs index 7cf3a61..3005e55 100644 --- a/Scripts/Accordion/UIAccordionElement.cs +++ b/Scripts/Accordion/AccordionElement.cs @@ -1,139 +1,138 @@ -///Credit ChoMPHi -///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ - -using UnityEngine; -using UnityEngine.Events; -using UnityEngine.UI.Tweens; -using System; -using System.Collections; - -namespace UnityEngine.UI -{ - [RequireComponent(typeof(RectTransform)), RequireComponent(typeof(LayoutElement))] - public class UIAccordionElement : Toggle { - - [SerializeField] private float m_MinHeight = 18f; - - private UIAccordion m_Accordion; - private RectTransform m_RectTransform; - private LayoutElement m_LayoutElement; - - [NonSerialized] - private readonly TweenRunner m_FloatTweenRunner; - - protected UIAccordionElement() - { - if (this.m_FloatTweenRunner == null) - this.m_FloatTweenRunner = new TweenRunner(); - - this.m_FloatTweenRunner.Init(this); - } - - protected override void Awake() - { - base.Awake(); - base.transition = Transition.None; - base.toggleTransition = ToggleTransition.None; - this.m_Accordion = this.gameObject.GetComponentInParent(); - this.m_RectTransform = this.transform as RectTransform; - this.m_LayoutElement = this.gameObject.GetComponent(); - this.onValueChanged.AddListener(OnValueChanged); - } - - protected override void OnValidate() - { - base.OnValidate(); - - if (this.group == null) - { - ToggleGroup tg = this.GetComponentInParent(); - - if (tg != null) - { - this.group = tg; - } - } - - LayoutElement le = this.gameObject.GetComponent(); - - if (le != null) - { - if (this.isOn) - { - le.preferredHeight = -1f; - } - else - { - le.preferredHeight = this.m_MinHeight; - } - } - } - - public void OnValueChanged(bool state) - { - if (this.m_LayoutElement == null) - return; - - UIAccordion.Transition transition = (this.m_Accordion != null) ? this.m_Accordion.transition : UIAccordion.Transition.Instant; - - if (transition == UIAccordion.Transition.Instant) - { - if (state) - { - this.m_LayoutElement.preferredHeight = -1f; - } - else - { - this.m_LayoutElement.preferredHeight = this.m_MinHeight; - } - } - else if (transition == UIAccordion.Transition.Tween) - { - if (state) - { - this.StartTween(this.m_MinHeight, this.GetExpandedHeight()); - } - else - { - this.StartTween(this.m_RectTransform.rect.height, this.m_MinHeight); - } - } - } - - protected float GetExpandedHeight() - { - if (this.m_LayoutElement == null) - return this.m_MinHeight; - - float originalPrefH = this.m_LayoutElement.preferredHeight; - this.m_LayoutElement.preferredHeight = -1f; - float h = LayoutUtility.GetPreferredHeight(this.m_RectTransform); - this.m_LayoutElement.preferredHeight = originalPrefH; - - return h; - } - - protected void StartTween(float startFloat, float targetFloat) - { - float duration = (this.m_Accordion != null) ? this.m_Accordion.transitionDuration : 0.3f; - - FloatTween info = new FloatTween - { - duration = duration, - startFloat = startFloat, - targetFloat = targetFloat - }; - info.AddOnChangedCallback(SetHeight); - info.ignoreTimeScale = true; - this.m_FloatTweenRunner.StartTween(info); - } - - protected void SetHeight(float height) - { - if (this.m_LayoutElement == null) - return; - - this.m_LayoutElement.preferredHeight = height; - } - } +///Credit ChoMPHi +///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ + +using System; +using UnityEngine.UI.Extensions.Tweens; + +namespace UnityEngine.UI.Extensions +{ + [RequireComponent(typeof(RectTransform), typeof(LayoutElement))] + [AddComponentMenu("UI/Extensions/Accordion/Accordion Element")] + public class AccordionElement : Toggle + { + + [SerializeField] private float m_MinHeight = 18f; + + private Accordion m_Accordion; + private RectTransform m_RectTransform; + private LayoutElement m_LayoutElement; + + [NonSerialized] + private readonly TweenRunner m_FloatTweenRunner; + + protected AccordionElement() + { + if (this.m_FloatTweenRunner == null) + this.m_FloatTweenRunner = new TweenRunner(); + + this.m_FloatTweenRunner.Init(this); + } + + protected override void Awake() + { + base.Awake(); + base.transition = Transition.None; + base.toggleTransition = ToggleTransition.None; + this.m_Accordion = this.gameObject.GetComponentInParent(); + this.m_RectTransform = this.transform as RectTransform; + this.m_LayoutElement = this.gameObject.GetComponent(); + this.onValueChanged.AddListener(OnValueChanged); + } + + protected override void OnValidate() + { + base.OnValidate(); + + if (this.group == null) + { + ToggleGroup tg = this.GetComponentInParent(); + + if (tg != null) + { + this.group = tg; + } + } + + LayoutElement le = this.gameObject.GetComponent(); + + if (le != null) + { + if (this.isOn) + { + le.preferredHeight = -1f; + } + else + { + le.preferredHeight = this.m_MinHeight; + } + } + } + + public void OnValueChanged(bool state) + { + if (this.m_LayoutElement == null) + return; + + Accordion.Transition transition = (this.m_Accordion != null) ? this.m_Accordion.transition : Accordion.Transition.Instant; + + if (transition == Accordion.Transition.Instant) + { + if (state) + { + this.m_LayoutElement.preferredHeight = -1f; + } + else + { + this.m_LayoutElement.preferredHeight = this.m_MinHeight; + } + } + else if (transition == Accordion.Transition.Tween) + { + if (state) + { + this.StartTween(this.m_MinHeight, this.GetExpandedHeight()); + } + else + { + this.StartTween(this.m_RectTransform.rect.height, this.m_MinHeight); + } + } + } + + protected float GetExpandedHeight() + { + if (this.m_LayoutElement == null) + return this.m_MinHeight; + + float originalPrefH = this.m_LayoutElement.preferredHeight; + this.m_LayoutElement.preferredHeight = -1f; + float h = LayoutUtility.GetPreferredHeight(this.m_RectTransform); + this.m_LayoutElement.preferredHeight = originalPrefH; + + return h; + } + + protected void StartTween(float startFloat, float targetFloat) + { + float duration = (this.m_Accordion != null) ? this.m_Accordion.transitionDuration : 0.3f; + + FloatTween info = new FloatTween + { + duration = duration, + startFloat = startFloat, + targetFloat = targetFloat + }; + info.AddOnChangedCallback(SetHeight); + info.ignoreTimeScale = true; + this.m_FloatTweenRunner.StartTween(info); + } + + protected void SetHeight(float height) + { + if (this.m_LayoutElement == null) + return; + + this.m_LayoutElement.preferredHeight = height; + } + } } \ No newline at end of file diff --git a/Scripts/Accordion/Editor/UIAccordionElementEditor.cs.meta b/Scripts/Accordion/AccordionElement.cs.meta similarity index 78% rename from Scripts/Accordion/Editor/UIAccordionElementEditor.cs.meta rename to Scripts/Accordion/AccordionElement.cs.meta index 6473a75..47f1593 100644 --- a/Scripts/Accordion/Editor/UIAccordionElementEditor.cs.meta +++ b/Scripts/Accordion/AccordionElement.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 53f48a76b4229da449e962fb3aa06279 +guid: 3c9d341c4bc7de548937508e6f837144 MonoImporter: serializedVersion: 2 defaultReferences: [] diff --git a/Scripts/Accordion/Editor/UIAccordionElementEditor.cs b/Scripts/Accordion/Editor/AccordionElementEditor.cs similarity index 77% rename from Scripts/Accordion/Editor/UIAccordionElementEditor.cs rename to Scripts/Accordion/Editor/AccordionElementEditor.cs index d672aae..29e8d8e 100644 --- a/Scripts/Accordion/Editor/UIAccordionElementEditor.cs +++ b/Scripts/Accordion/Editor/AccordionElementEditor.cs @@ -1,14 +1,12 @@ ///Credit ChoMPHi -///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ - -using UnityEngine; -using UnityEngine.UI; -using System.Collections; +///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ + +using UnityEngine.UI.Extensions; namespace UnityEditor.UI { - [CustomEditor(typeof(UIAccordionElement), true)] - public class UIAccordionElementEditor : ToggleEditor { + [CustomEditor(typeof(AccordionElement), true)] + public class AccordionElementEditor : ToggleEditor { public override void OnInspectorGUI() { diff --git a/Scripts/ComboBox/UIManager.cs.meta b/Scripts/Accordion/Editor/AccordionElementEditor.cs.meta similarity index 78% rename from Scripts/ComboBox/UIManager.cs.meta rename to Scripts/Accordion/Editor/AccordionElementEditor.cs.meta index cc6929e..57fbc44 100644 --- a/Scripts/ComboBox/UIManager.cs.meta +++ b/Scripts/Accordion/Editor/AccordionElementEditor.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 65d9021f354adf14ab31e200546fb013 +guid: 8882b502b0c65b24ba4623d6a383815b MonoImporter: serializedVersion: 2 defaultReferences: [] diff --git a/Scripts/Accordion/Tweening/FloatTween.cs b/Scripts/Accordion/Tweening/FloatTween.cs index 506c5d7..0378300 100644 --- a/Scripts/Accordion/Tweening/FloatTween.cs +++ b/Scripts/Accordion/Tweening/FloatTween.cs @@ -4,7 +4,7 @@ using System.Collections; using UnityEngine.Events; -namespace UnityEngine.UI.Tweens +namespace UnityEngine.UI.Extensions.Tweens { public struct FloatTween : ITweenValue { diff --git a/Scripts/Accordion/Tweening/ITweenValue.cs b/Scripts/Accordion/Tweening/ITweenValue.cs index 75d904b..7f09a75 100644 --- a/Scripts/Accordion/Tweening/ITweenValue.cs +++ b/Scripts/Accordion/Tweening/ITweenValue.cs @@ -1,9 +1,9 @@ ///Credit ChoMPHi ///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ -using System.Collections; - -namespace UnityEngine.UI.Tweens +using System.Collections; + +namespace UnityEngine.UI.Extensions.Tweens { internal interface ITweenValue { diff --git a/Scripts/Accordion/Tweening/TweenRunner.cs b/Scripts/Accordion/Tweening/TweenRunner.cs index 297a3d5..3a0fe8f 100644 --- a/Scripts/Accordion/Tweening/TweenRunner.cs +++ b/Scripts/Accordion/Tweening/TweenRunner.cs @@ -1,9 +1,9 @@ ///Credit ChoMPHi ///Sourced from - http://forum.unity3d.com/threads/accordion-type-layout.271818/ -using System.Collections; - -namespace UnityEngine.UI.Tweens +using System.Collections; + +namespace UnityEngine.UI.Extensions.Tweens { // Tween runner, executes the given tween. // The coroutine will live within the given diff --git a/Scripts/BestFitOutline.cs b/Scripts/BestFitOutline.cs index dbcc0cf..ae202ed 100644 --- a/Scripts/BestFitOutline.cs +++ b/Scripts/BestFitOutline.cs @@ -1,53 +1,50 @@ -/// Credit Melang -/// Sourced from - http://forum.unity3d.com/members/melang.593409/ - -using System; -using System.Collections.Generic; -namespace UnityEngine.UI -{ - [AddComponentMenu ("UI/Effects/BestFit Outline", 15)] - public class BestFitOutline : Shadow - { - // - // Constructors - // - protected BestFitOutline () - { - } - - // - // Methods - // - public override void ModifyVertices (List verts) - { - if (!this.IsActive ()) - { - return; - } - - Text foundtext = GetComponent(); - - float best_fit_adjustment = 1f; - - if (foundtext && foundtext.resizeTextForBestFit) - { - best_fit_adjustment = (float)foundtext.cachedTextGenerator.fontSizeUsedForBestFit / (foundtext.resizeTextMaxSize-1); //max size seems to be exclusive - //Debug.Log("best_fit_adjustment:"+best_fit_adjustment); - - } - - int start = 0; - int count = verts.Count; - base.ApplyShadow (verts, base.effectColor, start, verts.Count, base.effectDistance.x*best_fit_adjustment, base.effectDistance.y*best_fit_adjustment); - start = count; - count = verts.Count; - base.ApplyShadow (verts, base.effectColor, start, verts.Count, base.effectDistance.x*best_fit_adjustment, -base.effectDistance.y*best_fit_adjustment); - start = count; - count = verts.Count; - base.ApplyShadow (verts, base.effectColor, start, verts.Count, -base.effectDistance.x*best_fit_adjustment, base.effectDistance.y*best_fit_adjustment); - start = count; - count = verts.Count; - base.ApplyShadow (verts, base.effectColor, start, verts.Count, -base.effectDistance.x*best_fit_adjustment, -base.effectDistance.y*best_fit_adjustment); - } - } -} +/// Credit Melang +/// Sourced from - http://forum.unity3d.com/members/melang.593409/ + +using System.Collections.Generic; +namespace UnityEngine.UI.Extensions +{ + [AddComponentMenu("UI/Effects/Extensions/BestFit Outline")] + public class BestFitOutline : Shadow + { + // + // Constructors + // + protected BestFitOutline () + { + } + + // + // Methods + // + public override void ModifyVertices (List verts) + { + if (!this.IsActive ()) + { + return; + } + + Text foundtext = GetComponent(); + + float best_fit_adjustment = 1f; + + if (foundtext && foundtext.resizeTextForBestFit) + { + best_fit_adjustment = (float)foundtext.cachedTextGenerator.fontSizeUsedForBestFit / (foundtext.resizeTextMaxSize-1); //max size seems to be exclusive + } + + int start = 0; + int count = verts.Count; + base.ApplyShadow (verts, base.effectColor, start, verts.Count, base.effectDistance.x*best_fit_adjustment, base.effectDistance.y*best_fit_adjustment); + start = count; + count = verts.Count; + base.ApplyShadow (verts, base.effectColor, start, verts.Count, base.effectDistance.x*best_fit_adjustment, -base.effectDistance.y*best_fit_adjustment); + start = count; + count = verts.Count; + base.ApplyShadow (verts, base.effectColor, start, verts.Count, -base.effectDistance.x*best_fit_adjustment, base.effectDistance.y*best_fit_adjustment); + start = count; + count = verts.Count; + base.ApplyShadow (verts, base.effectColor, start, verts.Count, -base.effectDistance.x*best_fit_adjustment, -base.effectDistance.y*best_fit_adjustment); + } + } +} diff --git a/Scripts/Accordion/UIAccordion.cs.meta b/Scripts/BestFitOutline.cs.meta similarity index 78% rename from Scripts/Accordion/UIAccordion.cs.meta rename to Scripts/BestFitOutline.cs.meta index f6d184e..81e66f6 100644 --- a/Scripts/Accordion/UIAccordion.cs.meta +++ b/Scripts/BestFitOutline.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 41b373e1e582f0c4286c09ce25cc7021 +guid: 7b30dd83a12669d4f973ff5a79ca9842 MonoImporter: serializedVersion: 2 defaultReferences: [] diff --git a/Scripts/CanvasGroupActivator.cs b/Scripts/CanvasGroupActivator.cs index 45c3873..37677b8 100644 --- a/Scripts/CanvasGroupActivator.cs +++ b/Scripts/CanvasGroupActivator.cs @@ -1,117 +1,116 @@ /// Credit dakka /// Sourced from - http://forum.unity3d.com/threads/scripts-useful-4-6-scripts-collection.264161/#post-1752415 /// Notes - Mod from Yilmaz Kiymaz's editor scripts presentation at Unite 2013 +/// Updated ddreaper - removed Linq use, not required. -using UnityEngine; using UnityEditor; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -public class CanvasGroupActivator : EditorWindow { - - [MenuItem ("Window/Tools/Canvas Groups Activator")] - public static void InitWindow() - { - EditorWindow.GetWindow(); - } - - List canvasGroups; - - void OnEnable() - { - ObtainCanvasGroups(); - } - - void OnFocus() - { - ObtainCanvasGroups(); - } - - void ObtainCanvasGroups() - { - canvasGroups = new List(); - canvasGroups = GameObject.FindObjectsOfType().ToList(); - } - - void OnGUI() - { - if (canvasGroups == null) - { - return; - } - - GUILayout.Space(10f); - GUILayout.Label("Canvas Groups"); - - for (int i = 0; i < canvasGroups.Count; i++) - { - if (canvasGroups[i] == null) { continue; } - - bool initialActive = false; - if (canvasGroups[i].alpha == 1.0f) - initialActive = true; - - bool active = EditorGUILayout.Toggle(canvasGroups[i].name, initialActive); - if (active != initialActive) - { - //If deactivated and initially active - if(!active && initialActive) - { - //Deactivate this - canvasGroups[i].alpha = 0f; - canvasGroups[i].interactable = false; - canvasGroups[i].blocksRaycasts = false; - } - //If activated and initially deactive - else if(active && !initialActive) - { - //Deactivate all others and activate this - HideAllGroups(); - - canvasGroups[i].alpha = 1.0f; - canvasGroups[i].interactable = true; - canvasGroups[i].blocksRaycasts = true; - } - } - } - - GUILayout.Space(5f); - - if(GUILayout.Button("Show All")) - { - ShowAllGroups(); - } - - if(GUILayout.Button ("Hide All")) - { - HideAllGroups(); - } - } - - void ShowAllGroups() +namespace UnityEngine.UI.Extensions +{ + public class CanvasGroupActivator : EditorWindow { - canvasGroups.ForEach(x => + [MenuItem("Window/UI/Extensions/Canvas Groups Activator")] + public static void InitWindow() { - if (x != null) + EditorWindow.GetWindow(); + } + + CanvasGroup[] canvasGroups; + + void OnEnable() + { + ObtainCanvasGroups(); + } + + void OnFocus() + { + ObtainCanvasGroups(); + } + + void ObtainCanvasGroups() + { + canvasGroups = GameObject.FindObjectsOfType(); + } + + void OnGUI() + { + if (canvasGroups == null) { - x.alpha = 1.0f; - x.interactable = true; - x.blocksRaycasts = true; + return; } - }); + + GUILayout.Space(10f); + GUILayout.Label("Canvas Groups"); + + for (int i = 0; i < canvasGroups.Length; i++) + { + if (canvasGroups[i] == null) { continue; } + + bool initialActive = false; + if (canvasGroups[i].alpha == 1.0f) + initialActive = true; + + bool active = EditorGUILayout.Toggle(canvasGroups[i].name, initialActive); + if (active != initialActive) + { + //If deactivated and initially active + if (!active && initialActive) + { + //Deactivate this + canvasGroups[i].alpha = 0f; + canvasGroups[i].interactable = false; + canvasGroups[i].blocksRaycasts = false; + } + //If activated and initially deactive + else if (active && !initialActive) + { + //Deactivate all others and activate this + HideAllGroups(); + + canvasGroups[i].alpha = 1.0f; + canvasGroups[i].interactable = true; + canvasGroups[i].blocksRaycasts = true; + } + } + } + + GUILayout.Space(5f); + + if (GUILayout.Button("Show All")) + { + ShowAllGroups(); + } + + if (GUILayout.Button("Hide All")) + { + HideAllGroups(); + } + } + + void ShowAllGroups() + { + foreach (var group in canvasGroups) + { + if (group != null) + { + group.alpha = 1.0f; + group.interactable = true; + group.blocksRaycasts = true; + } + } + } + + void HideAllGroups() + { + foreach (var group in canvasGroups) + { + if (group != null) + { + group.alpha = 0; + group.interactable = false; + group.blocksRaycasts = false; + } + } + } } - - void HideAllGroups() - { - canvasGroups.ForEach(x => - { - if (x != null) - { - x.alpha = 0f; - x.interactable = false; - x.blocksRaycasts = false; - } - }); - } } diff --git a/Scripts/CanvasGroupActivator.cs.meta b/Scripts/CanvasGroupActivator.cs.meta new file mode 100644 index 0000000..97588ca --- /dev/null +++ b/Scripts/CanvasGroupActivator.cs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f60a419e63d329f43ba1bf57e98b34bf +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: diff --git a/Scripts/ComboBox.meta b/Scripts/ComboBox.meta new file mode 100644 index 0000000..312445c --- /dev/null +++ b/Scripts/ComboBox.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 726a11b8d64fa0143b34f417f5453f80 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Scripts/ComboBox/ComboBox.cs b/Scripts/ComboBox/ComboBox.cs index 42cca34..984295f 100644 --- a/Scripts/ComboBox/ComboBox.cs +++ b/Scripts/ComboBox/ComboBox.cs @@ -1,624 +1,625 @@ -///Credit perchik -///Sourced from - http://forum.unity3d.com/threads/receive-onclick-event-and-pass-it-on-to-lower-ui-elements.293642/ - -using UnityEngine; -using UnityEngine.UI; - -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.ComponentModel; - -[RequireComponent(typeof(RectTransform))] -public class ComboBox : MonoBehaviour -{ - #region declarations - #region private members - - private bool _isActive = false; //is the drop down panel active - - private Button comboBtn; - private Image comboBtnImg; - private Text comboBtnText; - - private Button overlayBtn; - - private GridLayoutGroup itemLayout; - - - private float _scrollbarWidth = 20.0f; - - private int scrollOffset; //offset of the selected item - - private int _itemsToDisplay = 4; //how many items to show in the dropdown panel - - private bool _hideFirstItem = false; //lets us hide the prompt after something is chosen - - private int _selectedIndex = 0; - - private List _items; //conceptual items in the list - - private bool _interactable = true; - - - #region private rect transforms - /// All of these have to be properties so that the editor script can access them - - private RectTransform _overlay; //overlayRT is a screensized box to handle clicks *not* on the button. (although this might have to change with multiple things on the screen. - private RectTransform overlayRT - { - get - { - if (_overlay == null) - { - _overlay = rectTransform.FindChild("Overlay").GetComponent(); - overlayBtn = _overlay.gameObject.GetComponent