SYMBOL INDEX (78 symbols across 18 files) FILE: Assets/Demo/Scripts/Demo.cs class Demo (line 7) | public class Demo : MonoBehaviour method Start (line 16) | private void Start() method Setup (line 24) | private void Setup() method Cleanup (line 41) | private void Cleanup() FILE: Assets/Demo/Scripts/DemoCarouselCell.cs class DemoCarouselCell (line 7) | public class DemoCarouselCell : CarouselCell method Refresh (line 15) | protected override void Refresh(DemoData data) method OnVisibilityChanged (line 22) | protected override void OnVisibilityChanged(bool visibility) method OnClick (line 30) | private void OnClick() FILE: Assets/Demo/Scripts/DemoCarouselView.cs class DemoCarouselView (line 5) | public class DemoCarouselView : CarouselView FILE: Assets/Demo/Scripts/DemoData.cs class DemoData (line 5) | public class DemoData method DemoData (line 11) | public DemoData(string spriteResourceKey, string text, Action clicked) FILE: Assets/FancyCarouselView/Editor/Scripts/CarouselScrollerEditor.cs class CarouselScrollerEditor (line 10) | [CustomEditor(typeof(CarouselScroller))] method OnInspectorGUI (line 13) | public override void OnInspectorGUI() FILE: Assets/FancyCarouselView/Editor/Scripts/CarouselViewEditor.cs class CarouselViewEditor (line 12) | [CustomEditor(typeof(CarouselView<,>), true)] method OnInspectorGUI (line 15) | public override void OnInspectorGUI() FILE: Assets/FancyCarouselView/Editor/Scripts/DotCarouselProgressViewEditor.cs class DotCarouselProgressViewEditor (line 7) | [CustomEditor(typeof(DotCarouselProgressView))] method OnInspectorGUI (line 10) | public override void OnInspectorGUI() FILE: Assets/FancyCarouselView/Runtime/Scripts/AnimationUtils.cs class AnimationUtils (line 9) | internal static class AnimationUtils method CreateFloatAnimationRoutine (line 11) | public static IEnumerator CreateFloatAnimationRoutine(float from, floa... FILE: Assets/FancyCarouselView/Runtime/Scripts/CarouselCell.cs class CarouselCell (line 11) | public abstract class CarouselCell : FancyCell where TCell : Carousel... FILE: Assets/FancyCarouselView/Runtime/Scripts/CarouselProgressView.cs class CarouselProgressView (line 9) | public abstract class CarouselProgressView : MonoBehaviour method Setup (line 15) | public abstract void Setup(int elementCount); method SetActiveIndex (line 21) | public abstract void SetActiveIndex(int elementIndex); class ClickableCarouselProgressView (line 24) | public abstract class ClickableCarouselProgressView : CarouselProgressView FILE: Assets/FancyCarouselView/Runtime/Scripts/CarouselScroller.cs class CarouselScroller (line 7) | [DisallowMultipleComponent] method Reset (line 11) | protected override void Reset() method SetInitialValues (line 19) | private void SetInitialValues() FILE: Assets/FancyCarouselView/Runtime/Scripts/CarouselView.cs class CarouselView (line 19) | [RequireComponent(typeof(CarouselScroller))] method OnEnable (line 114) | private void OnEnable() method OnDisable (line 123) | private void OnDisable() method OnBeginDrag (line 137) | void IBeginDragHandler.OnBeginDrag(PointerEventData eventData) method Setup (line 197) | void ICarouselView.Setup(IList dataList) method Setup (line 202) | public void Setup(IReadOnlyList dataList) method Cleanup (line 217) | public void Cleanup() method ScrollToBefore (line 222) | public void ScrollToBefore(float duration, Ease easeType, Action onCom... method ScrollToAfter (line 229) | public void ScrollToAfter(float duration, Ease easeType, Action onComp... method ScrollTo (line 236) | public void ScrollTo(float position, float duration, Ease easeType, Ac... method OnDrag (line 256) | void IDragHandler.OnDrag(PointerEventData eventData) method OnEndDrag (line 260) | void IEndDragHandler.OnEndDrag(PointerEventData eventData) method OnProgressViewElementClicked (line 296) | private void OnProgressViewElementClicked(int index) method StartAutoScrolling (line 311) | private void StartAutoScrolling() method AutoScrollRoutine (line 319) | private IEnumerator AutoScrollRoutine() method ScrollRoutine (line 337) | private IEnumerator ScrollRoutine(float position, float duration, Ease... method Initialize (line 348) | protected override void Initialize() method OnScrolled (line 378) | private void OnScrolled(float position) method StopScrolling (line 389) | private void StopScrolling() method StopAutoScrolling (line 397) | private void StopAutoScrolling() method GetCircularPosition (line 405) | private float GetCircularPosition(float position) method Reset (line 412) | private void Reset() method OnDrawGizmos (line 419) | private void OnDrawGizmos() method DrawCellRect (line 424) | private void DrawCellRect() FILE: Assets/FancyCarouselView/Runtime/Scripts/DotCarouselProgressElement.cs class DotCarouselProgressElement (line 10) | public sealed class DotCarouselProgressElement : MonoBehaviour method SetActive (line 28) | public void SetActive(bool isActive) FILE: Assets/FancyCarouselView/Runtime/Scripts/DotCarouselProgressView.cs class DotCarouselProgressView (line 11) | public sealed class DotCarouselProgressView : ClickableCarouselProgressView method Setup (line 25) | public override void Setup(int elementCount) method SetActiveIndex (line 54) | public override void SetActiveIndex(int elementIndex) method OnElementClicked (line 71) | private void OnElementClicked(int index) FILE: Assets/FancyCarouselView/Runtime/Scripts/EndMovementType.cs type EndMovementType (line 5) | public enum EndMovementType FILE: Assets/FancyCarouselView/Runtime/Scripts/ICarouselView.cs type ICarouselView (line 11) | public interface ICarouselView method ScrollToBefore (line 64) | void ScrollToBefore(float duration, Ease easeType, Action onComplete =... method ScrollToAfter (line 72) | void ScrollToAfter(float duration, Ease easeType, Action onComplete = ... method ScrollTo (line 81) | void ScrollTo(float position, float duration, Ease easeType, Action on... method Setup (line 110) | void Setup(IList dataList); type ICarouselView (line 89) | public interface ICarouselView : ICarouselView where TCell... method ScrollToBefore (line 64) | void ScrollToBefore(float duration, Ease easeType, Action onComplete =... method ScrollToAfter (line 72) | void ScrollToAfter(float duration, Ease easeType, Action onComplete = ... method ScrollTo (line 81) | void ScrollTo(float position, float duration, Ease easeType, Action on... method Setup (line 110) | void Setup(IList dataList); FILE: Assets/FancyCarouselView/Runtime/Scripts/ScrollEventPropagator.cs class ScrollEventPropagator (line 10) | [RequireComponent(typeof(Scroller))] method Start (line 19) | private void Start() method OnBeginDrag (line 31) | void IBeginDragHandler.OnBeginDrag(PointerEventData eventData) method OnDrag (line 59) | void IDragHandler.OnDrag(PointerEventData eventData) method OnEndDrag (line 72) | void IEndDragHandler.OnEndDrag(PointerEventData eventData)