From c367caf5bd18aeaad9b2d11a64981c2939950763 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Sat, 13 Oct 2018 07:03:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Scripts/BaseAxesChart.cs | 30 +- Scripts/BaseChart.cs | 50 +- demo.unity | 1467 ++++++++++++++++++++++++++++++++++---- 3 files changed, 1369 insertions(+), 178 deletions(-) diff --git a/Scripts/BaseAxesChart.cs b/Scripts/BaseAxesChart.cs index 86a51f93..61866e78 100644 --- a/Scripts/BaseAxesChart.cs +++ b/Scripts/BaseAxesChart.cs @@ -15,7 +15,7 @@ namespace xcharts public float top = 40; public float bottom = 25f; public float tickness = 0.6f; - public float scaleLen = 5.0f; + public float splitWidth = 5.0f; } [System.Serializable] @@ -47,7 +47,7 @@ namespace xcharts public void AddCategory(string category) { - if (data.Count >= maxSplitNumber) + if (data.Count >= maxSplitNumber && maxSplitNumber != 0) { data.RemoveAt(0); } @@ -100,7 +100,7 @@ namespace xcharts base.Awake(); lastCoordinateHig = chartHig; lastCoordinateWid = chartWid; - lastCoordinateScaleLen = coordinate.scaleLen; + lastCoordinateScaleLen = coordinate.splitWidth; InitXScale(); InitYScale(); } @@ -220,19 +220,19 @@ namespace xcharts float scaleWid = coordinateHig / (yAxis.splitNumber - 1); if (yAxis.type == AxisType.value) { - return new Vector3(zeroX - coordinate.scaleLen - 2f, + return new Vector3(zeroX - coordinate.splitWidth - 2f, zeroY + i * scaleWid, 0); } else { if (yAxis.boundaryGap) { - return new Vector3(zeroX - coordinate.scaleLen - 2f, + return new Vector3(zeroX - coordinate.splitWidth - 2f, zeroY + (i + 0.5f) * scaleWid, 0); } else { - return new Vector3(zeroX - coordinate.scaleLen - 2f, + return new Vector3(zeroX - coordinate.splitWidth - 2f, zeroY + i * scaleWid, 0); } @@ -245,18 +245,18 @@ namespace xcharts if (xAxis.type == AxisType.value) { return new Vector3(zeroX + (i + 1 - 0.5f) * scaleWid, - zeroY - coordinate.scaleLen - 10, 0); + zeroY - coordinate.splitWidth - 10, 0); } else { if (xAxis.boundaryGap) { - return new Vector3(zeroX + (i + 1) * scaleWid, zeroY - coordinate.scaleLen - 5, 0); + return new Vector3(zeroX + (i + 1) * scaleWid, zeroY - coordinate.splitWidth - 5, 0); } else { return new Vector3(zeroX + (i + 1 - 0.5f) * scaleWid, - zeroY - coordinate.scaleLen - 5, 0); + zeroY - coordinate.splitWidth - 5, 0); } } } @@ -265,11 +265,11 @@ namespace xcharts { if (lastCoordinateHig != coordinateHig || lastCoordinateWid != coordinateWid - || lastCoordinateScaleLen != coordinate.scaleLen) + || lastCoordinateScaleLen != coordinate.splitWidth) { lastCoordinateWid = coordinateWid; lastCoordinateHig = coordinateHig; - lastCoordinateScaleLen = coordinate.scaleLen; + lastCoordinateScaleLen = coordinate.splitWidth; OnCoordinateSize(); } if (checkCoordinate.show != coordinate.show) @@ -388,7 +388,7 @@ namespace xcharts // draw splitline for (int i = 1; i < yAxis.splitNumber; i++) { - float pX = zeroX - coordinate.scaleLen; + float pX = zeroX - coordinate.splitWidth; float pY = zeroY + i * coordinateHig / (yAxis.splitNumber - 1); ChartUtils.DrawLine(vh, new Vector3(pX, pY), new Vector3(zeroX, pY), coordinate.tickness, themeInfo.axisLineColor); @@ -401,7 +401,7 @@ namespace xcharts for (int i = 1; i < xAxis.splitNumber; i++) { float pX = zeroX + i * coordinateWid / (xAxis.splitNumber - 1); - float pY = zeroY - coordinate.scaleLen - 2; + float pY = zeroY - coordinate.splitWidth - 2; ChartUtils.DrawLine(vh, new Vector3(pX, zeroY), new Vector3(pX, pY), coordinate.tickness, themeInfo.axisLineColor); if (xAxis.showSplitLine) @@ -411,10 +411,10 @@ namespace xcharts } } //draw x,y axis - ChartUtils.DrawLine(vh, new Vector3(zeroX, zeroY - coordinate.scaleLen), + ChartUtils.DrawLine(vh, new Vector3(zeroX, zeroY - coordinate.splitWidth), new Vector3(zeroX, zeroY + coordinateHig + 2), coordinate.tickness, themeInfo.axisLineColor); - ChartUtils.DrawLine(vh, new Vector3(zeroX - coordinate.scaleLen, zeroY), + ChartUtils.DrawLine(vh, new Vector3(zeroX - coordinate.splitWidth, zeroY), new Vector3(zeroX + coordinateWid + 2, zeroY), coordinate.tickness, themeInfo.axisLineColor); } diff --git a/Scripts/BaseChart.cs b/Scripts/BaseChart.cs index 199bc3b1..24bb60d4 100644 --- a/Scripts/BaseChart.cs +++ b/Scripts/BaseChart.cs @@ -48,7 +48,6 @@ namespace xcharts public class LegendData { public bool show = true; - public ChartType type; public string key; public string text; public Button button { get; set; } @@ -59,9 +58,9 @@ namespace xcharts { public bool show = true; public Location location = Location.right; - public float dataWid = 50.0f; - public float dataHig = 20.0f; - public float dataSpace = 5; + public float itemWidth = 50.0f; + public float itemHeight = 20.0f; + public float itemGap = 5; public float left; public float right = 5; public float top; @@ -77,6 +76,13 @@ namespace xcharts } } + [System.Serializable] + public class Tooltip + { + public bool show; + + } + [System.Serializable] public class SeriesData { @@ -266,7 +272,7 @@ namespace xcharts LegendData data = legend.dataList[i]; Button btn = ChartUtils.AddButtonObject(LEGEND_TEXT + i, transform, themeInfo.font, themeInfo.textColor, Vector2.zero,Vector2.zero, Vector2.zero, - new Vector2(legend.dataWid, legend.dataHig)); + new Vector2(legend.itemWidth, legend.itemHeight)); legend.dataList[i].button = btn; Color bcolor = data.show ? themeInfo.GetColor(i) : themeInfo.unableColor; btn.gameObject.SetActive(legend.show); @@ -294,29 +300,29 @@ namespace xcharts float startX = legend.left; if (startX <= 0) { - startX = (chartWid - (legendCount * legend.dataWid - - (legendCount - 1) * legend.dataSpace)) / 2; + startX = (chartWid - (legendCount * legend.itemWidth - + (legendCount - 1) * legend.itemGap)) / 2; } float posY = legend.location == Location.bottom ? - legend.bottom : chartHig - legend.top - legend.dataHig; - return new Vector3(startX + i * (legend.dataWid + legend.dataSpace), posY, 0); + legend.bottom : chartHig - legend.top - legend.itemHeight; + return new Vector3(startX + i * (legend.itemWidth + legend.itemGap), posY, 0); case Location.left: case Location.right: float startY = 0; if (legend.top > 0) { - startY = chartHig - legend.top - legend.dataHig; + startY = chartHig - legend.top - legend.itemHeight; } else if (startY <= 0) { - float legendHig = legendCount * legend.dataHig - (legendCount - 1) * legend.dataSpace; + float legendHig = legendCount * legend.itemHeight - (legendCount - 1) * legend.itemGap; float offset = (chartHig - legendHig) / 2; - startY = chartHig - offset - legend.dataHig; + startY = chartHig - offset - legend.itemHeight; } float posX = legend.location == Location.left ? legend.left : - chartWid - legend.right - legend.dataWid; - return new Vector3(posX, startY - i * (legend.dataHig + legend.dataSpace), 0); + chartWid - legend.right - legend.itemWidth; + return new Vector3(posX, startY - i * (legend.itemHeight + legend.itemGap), 0); default: break; } return Vector3.zero; @@ -365,9 +371,9 @@ namespace xcharts OnLegendDataListChanged(); } - if (checkLegend.dataWid != legend.dataWid || - checkLegend.dataHig != legend.dataHig || - checkLegend.dataSpace != legend.dataSpace || + if (checkLegend.itemWidth != legend.itemWidth || + checkLegend.itemHeight != legend.itemHeight || + checkLegend.itemGap != legend.itemGap || checkLegend.left != legend.left || checkLegend.right != legend.right || checkLegend.bottom != legend.bottom || @@ -375,9 +381,9 @@ namespace xcharts checkLegend.location != legend.location || checkLegend.show != legend.show) { - checkLegend.dataWid = legend.dataWid; - checkLegend.dataHig = legend.dataHig; - checkLegend.dataSpace = legend.dataSpace; + checkLegend.itemWidth = legend.itemWidth; + checkLegend.itemHeight = legend.itemHeight; + checkLegend.itemGap = legend.itemGap; checkLegend.left = legend.left; checkLegend.right = legend.right; checkLegend.bottom = legend.bottom; @@ -417,10 +423,10 @@ namespace xcharts { Button btn = legend.dataList[i].button; btn.GetComponent().sizeDelta = - new Vector2(legend.dataWid, legend.dataHig); + new Vector2(legend.itemWidth, legend.itemHeight); Text txt = btn.GetComponentInChildren(); txt.transform.GetComponent().sizeDelta = - new Vector2(legend.dataWid, legend.dataHig); + new Vector2(legend.itemWidth, legend.itemHeight); txt.transform.localPosition = Vector3.zero; btn.transform.localPosition = GetLegendPosition(i); btn.gameObject.SetActive(legend.show); diff --git a/demo.unity b/demo.unity index f22769ac..3625d4d2 100644 --- a/demo.unity +++ b/demo.unity @@ -529,7 +529,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -556,6 +556,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 23069294} +--- !u!1 &25594392 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 25594393} + - component: {fileID: 25594395} + - component: {fileID: 25594394} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &25594393 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 25594392} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 100, y: 300, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 100, y: 300} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 1} +--- !u!114 &25594394 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 25594392} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Chart Title +--- !u!222 &25594395 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 25594392} --- !u!1 &37742855 GameObject: m_ObjectHideFlags: 0 @@ -1121,7 +1195,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1565,7 +1639,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -1666,6 +1740,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 139967711} +--- !u!1 &144401185 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 144401186} + - component: {fileID: 144401188} + - component: {fileID: 144401187} + m_Layer: 0 + m_Name: xScale2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &144401186 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 144401185} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 246.25, y: 10, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 246.25, y: 10} + m_SizeDelta: {x: 82.5, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &144401187 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 144401185} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 40 +--- !u!222 &144401188 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 144401185} --- !u!1 &145075505 GameObject: m_ObjectHideFlags: 0 @@ -1861,7 +2009,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -2110,6 +2258,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 235400232} +--- !u!1 &247302287 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 247302288} + - component: {fileID: 247302290} + - component: {fileID: 247302289} + m_Layer: 0 + m_Name: yScale1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &247302288 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 247302287} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 33, y: 83.75, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 33, y: 83.75} + m_SizeDelta: {x: 40, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &247302289 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 247302287} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 20 +--- !u!222 &247302290 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 247302287} --- !u!1 &264332120 GameObject: m_ObjectHideFlags: 0 @@ -2925,6 +3147,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -3067,6 +3290,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 348603703} +--- !u!1 &350966519 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 350966520} + - component: {fileID: 350966522} + - component: {fileID: 350966521} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &350966520 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 350966519} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1927902275} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0} +--- !u!114 &350966521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 350966519} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &350966522 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 350966519} --- !u!1 &359209179 GameObject: m_ObjectHideFlags: 0 @@ -3484,7 +3781,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -3664,6 +3961,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -4415,9 +4713,9 @@ Camera: y: 0 width: 1 height: 1 - near clip plane: 0.3 + near clip plane: 0.01 far clip plane: 1000 - field of view: 60 + field of view: 53 orthographic: 0 orthographic size: 5 m_Depth: -1 @@ -4428,7 +4726,7 @@ Camera: m_TargetTexture: {fileID: 0} m_TargetDisplay: 0 m_TargetEye: 3 - m_HDR: 1 + m_HDR: 0 m_AllowMSAA: 1 m_ForceIntoRT: 0 m_OcclusionCulling: 1 @@ -4662,7 +4960,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 80 + m_Text: 100 --- !u!222 &492181724 CanvasRenderer: m_ObjectHideFlags: 0 @@ -4818,6 +5116,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -4953,7 +5252,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 60 + m_Text: 75 --- !u!222 &500450068 CanvasRenderer: m_ObjectHideFlags: 0 @@ -5116,8 +5415,8 @@ RectTransform: m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 505350089} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 640, y: 360, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalPosition: {x: 960, y: 540, z: 0} + m_LocalScale: {x: 1.5, y: 1.5, z: 1.5} m_Children: - {fileID: 2051892027} m_Father: {fileID: 0} @@ -5276,6 +5575,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 509988268} +--- !u!1 &516168916 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 516168917} + - component: {fileID: 516168919} + - component: {fileID: 516168918} + m_Layer: 0 + m_Name: yScale4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &516168917 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 516168916} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 33, y: 260, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 33, y: 260} + m_SizeDelta: {x: 40, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &516168918 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 516168916} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 80 +--- !u!222 &516168919 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 516168916} --- !u!1 &516864726 GameObject: m_ObjectHideFlags: 0 @@ -5498,6 +5871,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 545145982} +--- !u!1 &546244462 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 546244463} + - component: {fileID: 546244465} + - component: {fileID: 546244464} + m_Layer: 0 + m_Name: xScale4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &546244463 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 546244462} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 411.25, y: 10, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 411.25, y: 10} + m_SizeDelta: {x: 82.5, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &546244464 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 546244462} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 80 +--- !u!222 &546244465 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 546244462} --- !u!1 &556040226 GameObject: m_ObjectHideFlags: 0 @@ -5989,7 +6436,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -6680,7 +7127,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -7591,6 +8038,154 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 789710062} +--- !u!1 &807470896 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 807470897} + - component: {fileID: 807470899} + - component: {fileID: 807470898} + m_Layer: 0 + m_Name: yScale0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &807470897 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 807470896} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 33, y: 25, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 33, y: 25} + m_SizeDelta: {x: 40, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &807470898 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 807470896} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &807470899 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 807470896} +--- !u!1 &817626501 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 817626502} + - component: {fileID: 817626504} + - component: {fileID: 817626503} + m_Layer: 0 + m_Name: xScale1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &817626502 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 817626501} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 163.75, y: 10, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 163.75, y: 10} + m_SizeDelta: {x: 82.5, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &817626503 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 817626501} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 20 +--- !u!222 &817626504 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 817626501} --- !u!1 &822231470 GameObject: m_ObjectHideFlags: 0 @@ -7664,6 +8259,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -7980,6 +8576,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -8048,6 +8645,19 @@ MonoBehaviour: value: 42.6 - key: key5 value: 124.3 + - legendKey: month + showDataNumber: 0 + dataList: + - key: key1 + value: 55 + - key: key2 + value: 64 + - key: key3 + value: 46.4 + - key: key4 + value: 42.6 + - key: key5 + value: 124.3 coordinate: show: 1 left: 40 @@ -8060,7 +8670,7 @@ MonoBehaviour: type: 1 splitNumber: 6 maxSplitNumber: 5 - showSplitLine: 1 + showSplitLine: 0 splitLineType: 1 boundaryGap: 1 data: @@ -8074,7 +8684,7 @@ MonoBehaviour: splitNumber: 5 maxSplitNumber: 5 showSplitLine: 0 - splitLineType: 1 + splitLineType: 0 boundaryGap: 0 data: - "\u5468\u4E00" @@ -8083,8 +8693,8 @@ MonoBehaviour: - "\u5468\u56DB" - "\u5468\u4E94" barInfo: - barWid: 0.35 - space: 5 + barWid: 0.25 + space: 2 --- !u!222 &867959892 CanvasRenderer: m_ObjectHideFlags: 0 @@ -8118,7 +8728,19 @@ RectTransform: m_LocalPosition: {x: -610, y: -850, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1635620649} + - {fileID: 25594393} + - {fileID: 1758935180} + - {fileID: 817626502} + - {fileID: 144401186} + - {fileID: 1778411295} + - {fileID: 546244463} + - {fileID: 807470897} + - {fileID: 247302288} + - {fileID: 936358225} + - {fileID: 2038245475} + - {fileID: 516168917} + - {fileID: 1927902275} + - {fileID: 1364640024} m_Father: {fileID: 724935907} m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -8135,7 +8757,7 @@ MonoBehaviour: m_GameObject: {fileID: 872320145} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d2231a0d3e3a5b043b074f6739be4a86, type: 3} + m_Script: {fileID: 11500000, guid: b4f38bd00b4648c448cabfc167538f7c, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} @@ -8153,6 +8775,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -8171,12 +8794,12 @@ MonoBehaviour: show: 1 text: Chart Title align: 2 - left: 0 - right: 0 - top: 5 - bottom: 0 + left: 1.1 + right: 0.1 + top: 0 + bottom: 8.5 legend: - show: 1 + show: 0 location: 1 dataWid: 50 dataHig: 20 @@ -8185,25 +8808,62 @@ MonoBehaviour: right: 5 top: 0 bottom: 0 - dataList: [] - seriesList: [] - radarInfo: - cricle: 0 - area: 0 - radius: 100 + dataList: + - show: 1 + type: 0 + key: test + text: + seriesList: + - legendKey: + showDataNumber: 0 + dataList: + - key: + value: 20 + - key: + value: 30 + - key: + value: 50 + - legendKey: + showDataNumber: 0 + dataList: + - key: + value: 30 + - key: + value: 50 + - key: + value: 80 + coordinate: + show: 1 + left: 40 + right: 30 + top: 40 + bottom: 25 + tickness: 0.6 + scaleLen: 5 + xAxis: + type: 0 splitNumber: 5 - left: 0 - right: 0 - top: 0 - bottom: 0 - lineTickness: 1 - linePointSize: 5 - lineColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - backgroundColorList: - - {r: 0.43529412, g: 0.43529412, b: 0.43529412, a: 1} - - {r: 0.3764706, g: 0.3764706, b: 0.3764706, a: 1} - showIndicator: 1 - indicatorList: [] + maxSplitNumber: 5 + showSplitLine: 1 + splitLineType: 1 + boundaryGap: 1 + data: [] + yAxis: + type: 0 + splitNumber: 5 + maxSplitNumber: 5 + showSplitLine: 1 + splitLineType: 1 + boundaryGap: 1 + data: [] + lineInfo: + tickness: 0.8 + showPoint: 1 + pointWid: 2.5 + smooth: 0 + smoothStyle: 2 + area: 0 + areaColor: {r: 0, g: 0, b: 0, a: 0} --- !u!222 &872320148 CanvasRenderer: m_ObjectHideFlags: 0 @@ -8257,7 +8917,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -8351,7 +9011,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 40 + m_Text: 50 --- !u!222 &902542137 CanvasRenderer: m_ObjectHideFlags: 0 @@ -8506,6 +9166,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 923931509} +--- !u!1 &936358224 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 936358225} + - component: {fileID: 936358227} + - component: {fileID: 936358226} + m_Layer: 0 + m_Name: yScale2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &936358225 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 936358224} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 33, y: 142.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 33, y: 142.5} + m_SizeDelta: {x: 40, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &936358226 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 936358224} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 40 +--- !u!222 &936358227 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 936358224} --- !u!1 &949530640 GameObject: m_ObjectHideFlags: 0 @@ -8914,6 +9648,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -9049,13 +9784,87 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 20 + m_Text: 25 --- !u!222 &979520139 CanvasRenderer: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 979520136} +--- !u!1 &989513580 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 989513581} + - component: {fileID: 989513583} + - component: {fileID: 989513582} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &989513581 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 989513580} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 50, y: 50, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1364640024} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 50, y: 50} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0} +--- !u!114 &989513582 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 989513580} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &989513583 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 989513580} --- !u!1 &1006379567 GameObject: m_ObjectHideFlags: 0 @@ -9325,7 +10134,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -9765,6 +10574,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -9993,7 +10803,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -10400,7 +11210,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11315,6 +12125,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -11395,7 +12206,7 @@ MonoBehaviour: type: 1 splitNumber: 6 maxSplitNumber: 5 - showSplitLine: 1 + showSplitLine: 0 splitLineType: 1 boundaryGap: 1 data: @@ -11407,8 +12218,8 @@ MonoBehaviour: yAxis: type: 0 splitNumber: 5 - maxSplitNumber: 5 - showSplitLine: 0 + maxSplitNumber: 6 + showSplitLine: 1 splitLineType: 1 boundaryGap: 0 data: [] @@ -11695,7 +12506,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -11722,6 +12533,117 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1359465258} +--- !u!1 &1364640023 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1364640024} + - component: {fileID: 1364640027} + - component: {fileID: 1364640026} + - component: {fileID: 1364640025} + m_Layer: 0 + m_Name: legend1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1364640024 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1364640023} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 345, y: 122.5, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 989513581} + m_Father: {fileID: 872320146} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 345, y: 122.5} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1364640025 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1364640023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1364640026} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1364640026 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1364640023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.45882353, g: 0.6039216, b: 0.627451, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1364640027 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1364640023} --- !u!1 &1365705717 GameObject: m_ObjectHideFlags: 0 @@ -11769,7 +12691,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12176,7 +13098,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -12879,7 +13801,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -13064,7 +13986,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -13238,6 +14160,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -14035,80 +14958,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1626237983} ---- !u!1 &1635620648 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1635620649} - - component: {fileID: 1635620651} - - component: {fileID: 1635620650} - m_Layer: 0 - m_Name: title - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1635620649 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1635620648} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 100, y: 295, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 872320146} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 100, y: 295} - m_SizeDelta: {x: 200, y: 20} - m_Pivot: {x: 0, y: 1} ---- !u!114 &1635620650 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1635620648} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: Chart Title ---- !u!222 &1635620651 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1635620648} --- !u!1 &1644673287 GameObject: m_ObjectHideFlags: 0 @@ -14263,6 +15112,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -14744,7 +15594,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15077,7 +15927,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -15474,6 +16324,154 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1753774156} +--- !u!1 &1758935179 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1758935180} + - component: {fileID: 1758935182} + - component: {fileID: 1758935181} + m_Layer: 0 + m_Name: xScale0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1758935180 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1758935179} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 81.25, y: 10, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 81.25, y: 10} + m_SizeDelta: {x: 82.5, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1758935181 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1758935179} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &1758935182 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1758935179} +--- !u!1 &1778411294 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1778411295} + - component: {fileID: 1778411297} + - component: {fileID: 1778411296} + m_Layer: 0 + m_Name: xScale3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1778411295 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1778411294} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 328.75, y: 10, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 328.75, y: 10} + m_SizeDelta: {x: 82.5, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1778411296 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1778411294} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 60 +--- !u!222 &1778411297 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1778411294} --- !u!1 &1800670494 GameObject: m_ObjectHideFlags: 0 @@ -15706,7 +16704,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16039,7 +17037,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16335,7 +17333,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -16584,6 +17582,117 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1909748020} +--- !u!1 &1927902274 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1927902275} + - component: {fileID: 1927902278} + - component: {fileID: 1927902277} + - component: {fileID: 1927902276} + m_Layer: 0 + m_Name: legend0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1927902275 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1927902274} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 345, y: 140, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 350966520} + m_Father: {fileID: 872320146} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 345, y: 140} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1927902276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1927902274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1927902277} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1927902277 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1927902274} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.8666667, g: 0.41960785, b: 0.4, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1927902278 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1927902274} --- !u!1 &1944836537 GameObject: m_ObjectHideFlags: 0 @@ -16927,7 +18036,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -17028,6 +18137,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2013327521} +--- !u!1 &2038245474 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2038245475} + - component: {fileID: 2038245477} + - component: {fileID: 2038245476} + m_Layer: 0 + m_Name: yScale3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2038245475 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2038245474} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 33, y: 201.25, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 872320146} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 33, y: 201.25} + m_SizeDelta: {x: 40, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2038245476 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2038245474} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 60 +--- !u!222 &2038245477 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2038245474} --- !u!1 &2051892026 GameObject: m_ObjectHideFlags: 0 @@ -17077,7 +18260,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: e6bd57e81d68cac47a78ccb7a452c8d7, type: 3} m_Name: m_EditorClassIdentifier: - theme: 2 + theme: 1 --- !u!222 &2051892029 CanvasRenderer: m_ObjectHideFlags: 0 @@ -17433,7 +18616,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -17614,6 +18797,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -18064,7 +19248,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -18165,6 +19349,7 @@ MonoBehaviour: contrastColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} textColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} subTextColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + unableColor: {r: 0.8, g: 0.8, b: 0.8, a: 1} axisLineColor: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} axisSplitLineColor: {r: 0.6666667, g: 0.6666667, b: 0.6666667, a: 1} colorPalette: @@ -18245,7 +19430,7 @@ MonoBehaviour: type: 0 splitNumber: 5 maxSplitNumber: 5 - showSplitLine: 1 + showSplitLine: 0 splitLineType: 1 boundaryGap: 0 data: