mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-30 05:08:48 +00:00
3.0 - cleanup code
This commit is contained in:
@@ -1,14 +1,8 @@
|
|||||||
|
|
||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
||||||
public sealed class ComponentEditorAttribute : Attribute
|
public sealed class ComponentEditorAttribute : Attribute
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
|
|
||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
||||||
public sealed class SerieEditorAttribute : Attribute
|
public sealed class SerieEditorAttribute : Attribute
|
||||||
|
|||||||
@@ -1,20 +1,14 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
using System;
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System.Text;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomEditor(typeof(BaseChart), true)]
|
[CustomEditor(typeof(BaseChart), true)]
|
||||||
public class BaseChartEditor : Editor
|
public class BaseChartEditor : UnityEditor.Editor
|
||||||
{
|
{
|
||||||
protected BaseChart m_Chart;
|
protected BaseChart m_Chart;
|
||||||
protected SerializedProperty m_Script;
|
protected SerializedProperty m_Script;
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(AnimationStyle), true)]
|
[CustomPropertyDrawer(typeof(AnimationStyle), true)]
|
||||||
public class AnimationDrawer : BasePropertyDrawer
|
public class AnimationDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(AreaStyle), true)]
|
[CustomPropertyDrawer(typeof(AreaStyle), true)]
|
||||||
public class AreaStyleDrawer : BasePropertyDrawer
|
public class AreaStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public delegate void DelegateMenuAction(Vector2 postion);
|
public delegate void DelegateMenuAction(Vector2 postion);
|
||||||
public class BasePropertyDrawer : PropertyDrawer
|
public class BasePropertyDrawer : PropertyDrawer
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
@@ -12,7 +6,7 @@ using UnityEngine;
|
|||||||
using TMPro;
|
using TMPro;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(ComponentTheme), true)]
|
[CustomPropertyDrawer(typeof(ComponentTheme), true)]
|
||||||
public class ComponentThemeDrawer : BasePropertyDrawer
|
public class ComponentThemeDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(Emphasis), true)]
|
[CustomPropertyDrawer(typeof(Emphasis), true)]
|
||||||
public class EmphasisDrawer : BasePropertyDrawer
|
public class EmphasisDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,15 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(IconStyle), true)]
|
[CustomPropertyDrawer(typeof(IconStyle), true)]
|
||||||
public class IconStyleDrawer : BasePropertyDrawer
|
public class IconStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(ItemStyle), true)]
|
[CustomPropertyDrawer(typeof(ItemStyle), true)]
|
||||||
public class ItemStyleDrawer : BasePropertyDrawer
|
public class ItemStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(LabelLine), true)]
|
[CustomPropertyDrawer(typeof(LabelLine), true)]
|
||||||
public class LabelLineDrawer : BasePropertyDrawer
|
public class LabelLineDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(LabelStyle), true)]
|
[CustomPropertyDrawer(typeof(LabelStyle), true)]
|
||||||
public class LabelStyleDrawer : BasePropertyDrawer
|
public class LabelStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,15 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(ArrowStyle), true)]
|
[CustomPropertyDrawer(typeof(ArrowStyle), true)]
|
||||||
public class ArrowDrawer : BasePropertyDrawer
|
public class ArrowDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(BaseLine), true)]
|
[CustomPropertyDrawer(typeof(BaseLine), true)]
|
||||||
public class BaseLineDrawer : BasePropertyDrawer
|
public class BaseLineDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(LineStyle), true)]
|
[CustomPropertyDrawer(typeof(LineStyle), true)]
|
||||||
public class LineStyleDrawer : BasePropertyDrawer
|
public class LineStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(Location), true)]
|
[CustomPropertyDrawer(typeof(Location), true)]
|
||||||
public class LocationDrawer : BasePropertyDrawer
|
public class LocationDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(Settings), true)]
|
[CustomPropertyDrawer(typeof(Settings), true)]
|
||||||
public class SettingsDrawer : BasePropertyDrawer
|
public class SettingsDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(SymbolStyle), true)]
|
[CustomPropertyDrawer(typeof(SymbolStyle), true)]
|
||||||
public class SymbolStyleDrawer : BasePropertyDrawer
|
public class SymbolStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(TextLimit), true)]
|
[CustomPropertyDrawer(typeof(TextLimit), true)]
|
||||||
public class TextLimitDrawer : BasePropertyDrawer
|
public class TextLimitDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,17 +1,11 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
#if dUI_TextMeshPro
|
#if dUI_TextMeshPro
|
||||||
using TMPro;
|
using TMPro;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(TextStyle), true)]
|
[CustomPropertyDrawer(typeof(TextStyle), true)]
|
||||||
public class TextStyleDrawer : BasePropertyDrawer
|
public class TextStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
@@ -12,7 +6,7 @@ using UnityEngine;
|
|||||||
using TMPro;
|
using TMPro;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(ThemeStyle), true)]
|
[CustomPropertyDrawer(typeof(ThemeStyle), true)]
|
||||||
public class ThemeStyleDrawer : BasePropertyDrawer
|
public class ThemeStyleDrawer : BasePropertyDrawer
|
||||||
@@ -68,7 +62,7 @@ namespace XCharts
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ExportThemeWindow : EditorWindow
|
public class ExportThemeWindow : UnityEditor.EditorWindow
|
||||||
{
|
{
|
||||||
public static BaseChart target;
|
public static BaseChart target;
|
||||||
private static ExportThemeWindow window;
|
private static ExportThemeWindow window;
|
||||||
|
|||||||
@@ -1,15 +1,7 @@
|
|||||||
/************************************************/
|
using UnityEditor;
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEditor;
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomPropertyDrawer(typeof(TitleStyle), true)]
|
[CustomPropertyDrawer(typeof(TitleStyle), true)]
|
||||||
public class TitleStyleDrawer : BasePropertyDrawer
|
public class TitleStyleDrawer : BasePropertyDrawer
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(Axis))]
|
[ComponentEditor(typeof(Axis))]
|
||||||
public class AxisEditor : MainComponentEditor<Axis>
|
public class AxisEditor : MainComponentEditor<Axis>
|
||||||
|
|||||||
@@ -1,15 +1,8 @@
|
|||||||
|
|
||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(Background))]
|
[ComponentEditor(typeof(Background))]
|
||||||
internal sealed class BackgroundEditor : MainComponentEditor<Background>
|
internal sealed class BackgroundEditor : MainComponentEditor<Background>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(DataZoom))]
|
[ComponentEditor(typeof(DataZoom))]
|
||||||
public class DataZoomEditor : MainComponentEditor<DataZoom>
|
public class DataZoomEditor : MainComponentEditor<DataZoom>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(GridCoord))]
|
[ComponentEditor(typeof(GridCoord))]
|
||||||
public class GridCoordEditor : MainComponentEditor<GridCoord>
|
public class GridCoordEditor : MainComponentEditor<GridCoord>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(Legend))]
|
[ComponentEditor(typeof(Legend))]
|
||||||
public class LegendEditor : MainComponentEditor<Legend>
|
public class LegendEditor : MainComponentEditor<Legend>
|
||||||
|
|||||||
@@ -1,17 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.Assertions;
|
using UnityEngine.Assertions;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class MainComponentBaseEditor
|
public class MainComponentBaseEditor
|
||||||
{
|
{
|
||||||
@@ -24,7 +16,7 @@ namespace XCharts
|
|||||||
internal SerializedProperty baseProperty;
|
internal SerializedProperty baseProperty;
|
||||||
internal SerializedProperty showProperty;
|
internal SerializedProperty showProperty;
|
||||||
|
|
||||||
internal void Init(BaseChart chart, MainComponent target, SerializedProperty property, Editor inspector)
|
internal void Init(BaseChart chart, MainComponent target, SerializedProperty property, UnityEditor.Editor inspector)
|
||||||
{
|
{
|
||||||
this.chart = chart;
|
this.chart = chart;
|
||||||
this.component = target;
|
this.component = target;
|
||||||
|
|||||||
@@ -1,17 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq.Expressions;
|
|
||||||
using UnityEditor;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class MainComponentEditor<T> : MainComponentBaseEditor
|
public class MainComponentEditor<T> : MainComponentBaseEditor
|
||||||
where T : MainComponent
|
where T : MainComponent
|
||||||
|
|||||||
@@ -1,18 +1,11 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine.Assertions;
|
using UnityEngine.Assertions;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public sealed class MainComponentListEditor
|
public sealed class MainComponentListEditor
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(MarkArea))]
|
[ComponentEditor(typeof(MarkArea))]
|
||||||
public class MarkAreaEditor : MainComponentEditor<MarkArea>
|
public class MarkAreaEditor : MainComponentEditor<MarkArea>
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(MarkLine))]
|
[ComponentEditor(typeof(MarkLine))]
|
||||||
public class MarkLineEditor : MainComponentEditor<MarkLine>
|
public class MarkLineEditor : MainComponentEditor<MarkLine>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(ParallelCoord))]
|
[ComponentEditor(typeof(ParallelCoord))]
|
||||||
public class ParallelCoordEditor : MainComponentEditor<ParallelCoord>
|
public class ParallelCoordEditor : MainComponentEditor<ParallelCoord>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(PolarCoord))]
|
[ComponentEditor(typeof(PolarCoord))]
|
||||||
public class PolarCoordEditor : MainComponentEditor<PolarCoord>
|
public class PolarCoordEditor : MainComponentEditor<PolarCoord>
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(RadarCoord))]
|
[ComponentEditor(typeof(RadarCoord))]
|
||||||
public class RadarCoordEditor : MainComponentEditor<RadarCoord>
|
public class RadarCoordEditor : MainComponentEditor<RadarCoord>
|
||||||
|
|||||||
@@ -1,22 +1,15 @@
|
|||||||
|
|
||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.IO;
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
#if dUI_TextMeshPro
|
#if dUI_TextMeshPro
|
||||||
using TMPro;
|
using TMPro;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomEditor(typeof(Theme))]
|
[CustomEditor(typeof(Theme))]
|
||||||
public class ThemeEditor : Editor
|
public class ThemeEditor : UnityEditor.Editor
|
||||||
{
|
{
|
||||||
private Theme m_Theme;
|
private Theme m_Theme;
|
||||||
void OnEnable()
|
void OnEnable()
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(Title))]
|
[ComponentEditor(typeof(Title))]
|
||||||
public class TitleEditor : MainComponentEditor<Title>
|
public class TitleEditor : MainComponentEditor<Title>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(Tooltip))]
|
[ComponentEditor(typeof(Tooltip))]
|
||||||
public class TooltipEditor : MainComponentEditor<Tooltip>
|
public class TooltipEditor : MainComponentEditor<Tooltip>
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(Vessel))]
|
[ComponentEditor(typeof(Vessel))]
|
||||||
public class VesselEditor : MainComponentEditor<Vessel>
|
public class VesselEditor : MainComponentEditor<Vessel>
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[ComponentEditor(typeof(VisualMap))]
|
[ComponentEditor(typeof(VisualMap))]
|
||||||
public class VisualMapEditor : MainComponentEditor<VisualMap>
|
public class VisualMapEditor : MainComponentEditor<VisualMap>
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Bar))]
|
[SerieEditor(typeof(Bar))]
|
||||||
public class BarEditor : SerieEditor<Bar>
|
public class BarEditor : SerieEditor<Bar>
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Candlestick))]
|
[SerieEditor(typeof(Candlestick))]
|
||||||
public class CandlestickEditor : SerieEditor<Candlestick>
|
public class CandlestickEditor : SerieEditor<Candlestick>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(EffectScatter))]
|
[SerieEditor(typeof(EffectScatter))]
|
||||||
public class EffectScatterEditor : SerieEditor<EffectScatter>
|
public class EffectScatterEditor : SerieEditor<EffectScatter>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Heatmap))]
|
[SerieEditor(typeof(Heatmap))]
|
||||||
public class HeatmapEditor : SerieEditor<Heatmap>
|
public class HeatmapEditor : SerieEditor<Heatmap>
|
||||||
|
|||||||
@@ -1,13 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Line))]
|
[SerieEditor(typeof(Line))]
|
||||||
public class LineEditor : SerieEditor<Line>
|
public class LineEditor : SerieEditor<Line>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Liquid))]
|
[SerieEditor(typeof(Liquid))]
|
||||||
public class LiquidEditor : SerieEditor<Liquid>
|
public class LiquidEditor : SerieEditor<Liquid>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Parallel))]
|
[SerieEditor(typeof(Parallel))]
|
||||||
public class ParallelEditor : SerieEditor<Parallel>
|
public class ParallelEditor : SerieEditor<Parallel>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Pie))]
|
[SerieEditor(typeof(Pie))]
|
||||||
public class PieEditor : SerieEditor<Pie>
|
public class PieEditor : SerieEditor<Pie>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Radar))]
|
[SerieEditor(typeof(Radar))]
|
||||||
public class RadarEditor : SerieEditor<Radar>
|
public class RadarEditor : SerieEditor<Radar>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Ring))]
|
[SerieEditor(typeof(Ring))]
|
||||||
public class RingEditor : SerieEditor<Ring>
|
public class RingEditor : SerieEditor<Ring>
|
||||||
|
|||||||
@@ -1,11 +1,6 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[SerieEditor(typeof(Scatter))]
|
[SerieEditor(typeof(Scatter))]
|
||||||
public class ScatterEditor : SerieEditor<Scatter>
|
public class ScatterEditor : SerieEditor<Scatter>
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
@@ -11,7 +5,7 @@ using UnityEditor;
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.Assertions;
|
using UnityEngine.Assertions;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class SerieBaseEditor
|
public class SerieBaseEditor
|
||||||
{
|
{
|
||||||
@@ -25,7 +19,7 @@ namespace XCharts
|
|||||||
protected Dictionary<string, Type> m_CoordOptionsDic;
|
protected Dictionary<string, Type> m_CoordOptionsDic;
|
||||||
protected List<string> m_CoordOptionsNames;
|
protected List<string> m_CoordOptionsNames;
|
||||||
|
|
||||||
internal void Init(BaseChart chart, Serie target, SerializedProperty property, Editor inspector)
|
internal void Init(BaseChart chart, Serie target, SerializedProperty property, UnityEditor.Editor inspector)
|
||||||
{
|
{
|
||||||
this.chart = chart;
|
this.chart = chart;
|
||||||
this.serie = target;
|
this.serie = target;
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class SerieEditor<T> : SerieBaseEditor where T : Serie
|
public class SerieEditor<T> : SerieBaseEditor where T : Serie
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,19 +1,13 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine.Assertions;
|
using UnityEngine.Assertions;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
namespace XCharts
|
|
||||||
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public sealed class SerieListEditor
|
public sealed class SerieListEditor
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,17 +1,11 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System;
|
using System;
|
||||||
using UnityEngine.Assertions;
|
using UnityEngine.Assertions;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class HeaderMenuInfo
|
public class HeaderMenuInfo
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class EditorCustomStyles
|
public class EditorCustomStyles
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
internal static class ThemeCheck
|
internal static class ThemeCheck
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,18 +1,10 @@
|
|||||||
/******************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/******************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomEditor(typeof(XCProgressBar), false)]
|
[CustomEditor(typeof(XCProgressBar), false)]
|
||||||
public class XCProgressBarEditor : Editor
|
public class XCProgressBarEditor : UnityEditor.Editor
|
||||||
{
|
{
|
||||||
|
|
||||||
[MenuItem("XCharts/ProgressBar", priority = 200)]
|
[MenuItem("XCharts/ProgressBar", priority = 200)]
|
||||||
|
|||||||
@@ -1,18 +1,12 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class PraseExternalDataEditor : EditorWindow
|
public class PraseExternalDataEditor : UnityEditor.EditorWindow
|
||||||
{
|
{
|
||||||
private static BaseChart s_Chart;
|
private static BaseChart s_Chart;
|
||||||
private static Serie s_Serie;
|
private static Serie s_Serie;
|
||||||
|
|||||||
@@ -1,18 +1,11 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
[CustomEditor(typeof(XCSettings))]
|
[CustomEditor(typeof(XCSettings))]
|
||||||
public class XCSettingsEditor : Editor
|
public class XCSettingsEditor : UnityEditor.Editor
|
||||||
{
|
{
|
||||||
internal class Styles
|
internal class Styles
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,18 +1,12 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
using UnityEngine.EventSystems;
|
using UnityEngine.EventSystems;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts.Editor
|
||||||
{
|
{
|
||||||
public class XChartsEditor : Editor
|
public class XChartsEditor : UnityEditor.Editor
|
||||||
{
|
{
|
||||||
private static Transform GetParent()
|
private static Transform GetParent()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
public class Example00_CheatSheet : MonoBehaviour
|
public class Example00_CheatSheet : MonoBehaviour
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.EventSystems;
|
using UnityEngine.EventSystems;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
public class Example10_LineChart : MonoBehaviour
|
public class Example10_LineChart : MonoBehaviour
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,16 +1,10 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
using XUGL;
|
using XUGL;
|
||||||
|
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
public class Example20_BarChart : MonoBehaviour
|
public class Example20_BarChart : MonoBehaviour
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.EventSystems;
|
using UnityEngine.EventSystems;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
public class Example30_PieChart : MonoBehaviour
|
public class Example30_PieChart : MonoBehaviour
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
public class Example40_Radar : MonoBehaviour
|
public class Example40_Radar : MonoBehaviour
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,15 +1,9 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,13 +1,7 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,14 +1,8 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using UnityEngine.UI;
|
using UnityEngine.UI;
|
||||||
|
|
||||||
namespace XCharts.Examples
|
namespace XCharts.Example
|
||||||
{
|
{
|
||||||
[DisallowMultipleComponent]
|
[DisallowMultipleComponent]
|
||||||
[ExecuteInEditMode]
|
[ExecuteInEditMode]
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System;
|
using System;
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System;
|
using System;
|
||||||
using UnityEngine.EventSystems;
|
using UnityEngine.EventSystems;
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
|
|
||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
|
|
||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
|
|
||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace XCharts
|
namespace XCharts
|
||||||
|
|||||||
@@ -1,10 +1,4 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System;
|
using System;
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
/******************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/******************************************/
|
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
/******************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/******************************************/
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using XUGL;
|
using XUGL;
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|||||||
@@ -1,9 +1,3 @@
|
|||||||
/************************************************/
|
|
||||||
/* */
|
|
||||||
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
||||||
/* https://github.com/monitor1394 */
|
|
||||||
/* */
|
|
||||||
/************************************************/
|
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user