diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index 62f1fce1..60472e62 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -1,6 +1,7 @@ # 更新日志 +* (2020.04.28) 增加`自由锚点`支持,任意对齐方式 * (2020.04.23) 优化`ScatterChart`的`Tooltip`显示效果 * (2020.04.23) 增加`Tooltip`的`formatter`对`{.}`、`{c:0}`、`{c1:1}`的支持 * (2020.04.19) 优化`LineChart`折线图的区域填充渐变效果 diff --git a/Assets/XCharts/Demo/Runtime/Demo_Test.cs b/Assets/XCharts/Demo/Runtime/Demo_Test.cs index 78487be2..6677fc12 100644 --- a/Assets/XCharts/Demo/Runtime/Demo_Test.cs +++ b/Assets/XCharts/Demo/Runtime/Demo_Test.cs @@ -35,7 +35,8 @@ namespace XCharts void OnTestBtn() { - chart.ClearData(); + //chart.ClearData(); + chart.SetSize(800,400); } void AddData() diff --git a/Assets/XCharts/Documentation/XChartsAPI.md b/Assets/XCharts/Documentation/XChartsAPI.md index b54a6fea..3b01237c 100644 --- a/Assets/XCharts/Documentation/XChartsAPI.md +++ b/Assets/XCharts/Documentation/XChartsAPI.md @@ -14,7 +14,7 @@ * `BaseChart.chartWidth`:图表的宽。 * `BaseChart.chartHeight`:图表的高。 * `BaseChart.customDrawCallback`:自定义绘制回调函数。 -* `BaseChart.SetSize(float width, float height)`:设置图表的大小。 +* `BaseChart.SetSize(float width, float height)`: 设置图表的宽高(在非stretch pivot下才有效,其他情况需要自己调整RectTransform)。 * `BaseChart.ClearData()`:清除所有数据,系列列表会保留,只是移除列表中系列的数据。 * `BaseChart.RemoveData()`:清除所有系列和图例数据,系列列表也会被清除。 * `BaseChart.RemoveData(string serieName)`:清除指定系列名称的数据。 diff --git a/Assets/XCharts/Editor/BaseChartEditor.cs b/Assets/XCharts/Editor/BaseChartEditor.cs index 6cced927..3ed77cfe 100644 --- a/Assets/XCharts/Editor/BaseChartEditor.cs +++ b/Assets/XCharts/Editor/BaseChartEditor.cs @@ -75,8 +75,8 @@ namespace XCharts protected virtual void OnStartInspectorGUI() { EditorGUILayout.PropertyField(m_Script); - EditorGUILayout.PropertyField(m_ChartWidth); - EditorGUILayout.PropertyField(m_ChartHeight); + // EditorGUILayout.PropertyField(m_ChartWidth); + // EditorGUILayout.PropertyField(m_ChartHeight); EditorGUILayout.PropertyField(m_ThemeInfo, true); EditorGUILayout.PropertyField(m_Title, true); EditorGUILayout.PropertyField(m_Legend, true); diff --git a/Assets/XCharts/Editor/CoordinateChartEditor.cs b/Assets/XCharts/Editor/CoordinateChartEditor.cs index d39944f8..f25acc4f 100644 --- a/Assets/XCharts/Editor/CoordinateChartEditor.cs +++ b/Assets/XCharts/Editor/CoordinateChartEditor.cs @@ -39,8 +39,14 @@ namespace XCharts protected override void OnStartInspectorGUI() { base.OnStartInspectorGUI(); - EditorGUILayout.PropertyField(m_DataZoom); - EditorGUILayout.PropertyField(m_VisualMap); + if (m_Target is LineChart || m_Target is BarChart) + { + EditorGUILayout.PropertyField(m_DataZoom); + } + if (m_Target is HeatmapChart) + { + EditorGUILayout.PropertyField(m_VisualMap); + } EditorGUILayout.PropertyField(m_Grid); for (int i = 0; i < m_XAxises.arraySize; i++) { diff --git a/Assets/XCharts/Editor/RadarChartEditor.cs b/Assets/XCharts/Editor/RadarChartEditor.cs index cb4bed97..1cfe72eb 100644 --- a/Assets/XCharts/Editor/RadarChartEditor.cs +++ b/Assets/XCharts/Editor/RadarChartEditor.cs @@ -28,8 +28,8 @@ namespace XCharts protected override void OnEndInspectorGUI() { - base.OnEndInspectorGUI(); EditorGUILayout.PropertyField(m_Radars, true); + base.OnEndInspectorGUI(); } } } \ No newline at end of file diff --git a/Assets/XCharts/Editor/XChartEditor.cs b/Assets/XCharts/Editor/XChartEditor.cs index f1b7cb52..4df8ac79 100644 --- a/Assets/XCharts/Editor/XChartEditor.cs +++ b/Assets/XCharts/Editor/XChartEditor.cs @@ -66,6 +66,10 @@ namespace XCharts chart.transform.SetParent(parent); chart.transform.localScale = Vector3.one; chart.transform.localPosition = Vector3.zero; + var rect = chart.GetComponent(); + rect.anchorMin = new Vector2(0.5f, 0.5f); + rect.anchorMax = new Vector2(0.5f, 0.5f); + rect.pivot = new Vector2(0.5f, 0.5f); } [MenuItem("GameObject/XCharts/LineChart", priority = 44)] diff --git a/Assets/XCharts/Runtime/API/BaseChart_API.cs b/Assets/XCharts/Runtime/API/BaseChart_API.cs index 2ac5a924..67699b78 100644 --- a/Assets/XCharts/Runtime/API/BaseChart_API.cs +++ b/Assets/XCharts/Runtime/API/BaseChart_API.cs @@ -48,6 +48,16 @@ namespace XCharts /// public Settings settings { get { return m_Settings; } } /// + /// The x of chart. + /// 图表的X + /// + public float chartX { get { return m_ChartX; } } + /// + /// The y of chart. + /// 图表的Y + /// + public float chartY { get { return m_ChartY; } } + /// /// The width of chart. /// 图表的宽 /// @@ -58,6 +68,13 @@ namespace XCharts /// public float chartHeight { get { return m_ChartHeight; } } /// + /// The position of chart. + /// 图表的左下角起始坐标。 + /// + /// + public Vector3 chartPosition { get { return m_ChartPosition; } } + public Rect chartRect { get { return m_ChartRect; } } + /// /// The postion of pointer. /// 鼠标位置 /// @@ -70,21 +87,22 @@ namespace XCharts /// 警告信息。 /// public string warningInfo { get; protected set; } + /// - /// Set the size of chart. - /// 设置图表的大小。 + /// 设置图表的宽高(在非stretch pivot下才有效,其他情况需要自己调整RectTransform) /// - /// width - /// height + /// + /// public virtual void SetSize(float width, float height) { - m_ChartWidth = width; - m_ChartHeight = height; - m_CheckWidth = width; - m_CheckHeight = height; - - rectTransform.sizeDelta = new Vector2(m_ChartWidth, m_ChartHeight); - OnSizeChanged(); + if (LayerHelper.IsFixedWidthHeight(rectTransform)) + { + rectTransform.sizeDelta = new Vector2(width, height); + } + else + { + Debug.LogError("Can't set size on stretch pivot,you need to modify rectTransform by yourself."); + } } /// @@ -486,11 +504,7 @@ namespace XCharts m_RefreshChart = true; } - [Obsolete("Use BaseChart.RefreshLabel() instead.", true)] - public void ReinitChartLabel() - { - RefreshLabel(); - } + /// /// 刷新文本标签Label,重新初始化,当有改动Label参数时手动调用改接口 @@ -541,15 +555,7 @@ namespace XCharts m_Series.AnimationEnable(flag); } - [Obsolete("Use BaseChart.AnimationFadeIn() instead.", true)] - public void AnimationStart() - { - } - [Obsolete("Use BaseChart.AnimationFadeOut() instead.", true)] - public void MissAnimationStart() - { - } /// /// fadeIn animation. @@ -620,8 +626,8 @@ namespace XCharts /// public bool IsInChart(Vector2 local) { - if (local.x < 0 || local.x > chartWidth || - local.y < 0 || local.y > chartHeight) + if (local.x < m_ChartX || local.x > m_ChartX + chartWidth || + local.y < m_ChartY || local.y > m_ChartY + chartHeight) { return false; } @@ -634,10 +640,10 @@ namespace XCharts else { var np = new Vector3(pos.x, pos.y); - if (np.x < 0) np.x = 0; - if (np.x > chartWidth) np.x = chartWidth; - if (np.y < 0) np.y = 0; - if (np.y > chartHeight) np.y = chartHeight; + if (np.x < m_ChartX) np.x = m_ChartX; + if (np.x > m_ChartX + chartWidth) np.x = m_ChartX + chartWidth; + if (np.y < m_ChartY) np.y = m_ChartY; + if (np.y > m_ChartY + chartHeight) np.y = m_ChartY + chartHeight; return np; } } @@ -651,5 +657,24 @@ namespace XCharts warningInfo = CheckHelper.CheckChart(this); return warningInfo; } + + public Vector3 GetTitlePosition() + { + return chartPosition + m_Title.location.GetPosition(chartWidth, chartHeight); + } + + public Vector3 GetLegendPosition() + { + return chartPosition + m_Legend.location.GetPosition(chartWidth, chartHeight); + } + + [Obsolete("Use BaseChart.RefreshLabel() instead.", true)] + public void ReinitChartLabel() { } + + [Obsolete("Use BaseChart.AnimationFadeIn() instead.", true)] + public void AnimationStart() { } + + [Obsolete("Use BaseChart.AnimationFadeOut() instead.", true)] + public void MissAnimationStart() { } } } diff --git a/Assets/XCharts/Runtime/API/CoordinateChart_API.cs b/Assets/XCharts/Runtime/API/CoordinateChart_API.cs index e138873a..eb100398 100644 --- a/Assets/XCharts/Runtime/API/CoordinateChart_API.cs +++ b/Assets/XCharts/Runtime/API/CoordinateChart_API.cs @@ -22,12 +22,12 @@ namespace XCharts /// The lower left position x of coordinate system. /// 坐标系的左下角坐标X。 /// - public float coordinateX { get { return m_Grid.left; } } + public float coordinateX { get { return m_ChartX + m_Grid.left; } } /// /// The lower left position y of coordinate system. /// 坐标系的左下角坐标Y。 /// - public float coordinateY { get { return m_Grid.bottom; } } + public float coordinateY { get { return m_ChartY + m_Grid.bottom; } } [Obsolete("Use CoordinateChart.coordinateWidth instead.", true)] public float coordinateWid { get { return coordinateWidth; } } diff --git a/Assets/XCharts/Runtime/Component/Main/DataZoom.cs b/Assets/XCharts/Runtime/Component/Main/DataZoom.cs index 84cd3115..43fa6c3f 100644 --- a/Assets/XCharts/Runtime/Component/Main/DataZoom.cs +++ b/Assets/XCharts/Runtime/Component/Main/DataZoom.cs @@ -321,9 +321,9 @@ namespace XCharts /// /// /// - public bool IsInZoom(Vector2 pos, float startX, float width) + public bool IsInZoom(Vector2 pos, float startX, float startY, float width) { - Rect rect = Rect.MinMaxRect(startX, m_Bottom, startX + width, m_Bottom + m_Height); + Rect rect = Rect.MinMaxRect(startX, startY + m_Bottom, startX + width, startY + m_Bottom + m_Height); return rect.Contains(pos); } @@ -334,11 +334,11 @@ namespace XCharts /// /// /// - public bool IsInSelectedZoom(Vector2 pos, float startX, float width) + public bool IsInSelectedZoom(Vector2 pos, float startX, float startY, float width) { var start = startX + width * m_Start / 100; var end = startX + width * m_End / 100; - Rect rect = Rect.MinMaxRect(start, m_Bottom, end, m_Bottom + m_Height); + Rect rect = Rect.MinMaxRect(start, startY + m_Bottom, end, startY + m_Bottom + m_Height); return rect.Contains(pos); } @@ -349,10 +349,10 @@ namespace XCharts /// /// /// - public bool IsInStartZoom(Vector2 pos, float startX, float width) + public bool IsInStartZoom(Vector2 pos, float startX, float startY, float width) { var start = startX + width * m_Start / 100; - Rect rect = Rect.MinMaxRect(start - 10, m_Bottom, start + 10, m_Bottom + m_Height); + Rect rect = Rect.MinMaxRect(start - 10, startY + m_Bottom, start + 10, startY + m_Bottom + m_Height); return rect.Contains(pos); } @@ -363,10 +363,10 @@ namespace XCharts /// /// /// - public bool IsInEndZoom(Vector2 pos, float startX, float width) + public bool IsInEndZoom(Vector2 pos, float startX, float startY, float width) { var end = startX + width * m_End / 100; - Rect rect = Rect.MinMaxRect(end - 10, m_Bottom, end + 10, m_Bottom + m_Height); + Rect rect = Rect.MinMaxRect(end - 10, startY + m_Bottom, end + 10, startY + m_Bottom + m_Height); return rect.Contains(pos); } diff --git a/Assets/XCharts/Runtime/Component/Main/Radar.cs b/Assets/XCharts/Runtime/Component/Main/Radar.cs index 53c9b9e7..cda5aea7 100644 --- a/Assets/XCharts/Runtime/Component/Main/Radar.cs +++ b/Assets/XCharts/Runtime/Component/Main/Radar.cs @@ -282,12 +282,12 @@ namespace XCharts return 0; } - internal void UpdateRadarCenter(float chartWidth, float chartHeight) + internal void UpdateRadarCenter(Vector3 chartPosition, float chartWidth, float chartHeight) { if (center.Length < 2) return; var centerX = center[0] <= 1 ? chartWidth * center[0] : center[0]; var centerY = center[1] <= 1 ? chartHeight * center[1] : center[1]; - runtimeCenterPos = new Vector2(centerX, centerY); + runtimeCenterPos = chartPosition + new Vector3(centerX, centerY); if (radius <= 0) { runtimeRadius = 0; diff --git a/Assets/XCharts/Runtime/Component/Main/Serie.cs b/Assets/XCharts/Runtime/Component/Main/Serie.cs index 55cf3dd3..785a42f4 100644 --- a/Assets/XCharts/Runtime/Component/Main/Serie.cs +++ b/Assets/XCharts/Runtime/Component/Main/Serie.cs @@ -1572,21 +1572,7 @@ namespace XCharts return false; } - /// - /// 更新运行时中心点和半径 - /// - /// - /// - internal void UpdateCenter(float chartWidth, float chartHeight) - { - if (center.Length < 2) return; - var centerX = center[0] <= 1 ? chartWidth * center[0] : center[0]; - var centerY = center[1] <= 1 ? chartHeight * center[1] : center[1]; - runtimeCenterPos = new Vector2(centerX, centerY); - var minWidth = Mathf.Min(chartWidth, chartHeight); - runtimeInsideRadius = radius[0] <= 1 ? minWidth * radius[0] : radius[0]; - runtimeOutsideRadius = radius[1] <= 1 ? minWidth * radius[1] : radius[1]; - } + /// /// 设置指定index的数据图标的尺寸 diff --git a/Assets/XCharts/Runtime/Component/Main/VisualMap.cs b/Assets/XCharts/Runtime/Component/Main/VisualMap.cs index 09bf484f..7504c40e 100644 --- a/Assets/XCharts/Runtime/Component/Main/VisualMap.cs +++ b/Assets/XCharts/Runtime/Component/Main/VisualMap.cs @@ -381,9 +381,9 @@ namespace XCharts } } - public float GetValue(Vector3 pos, float chartWidth, float chartHeight) + public float GetValue(Vector3 pos, Rect chartRect) { - var centerPos = location.GetPosition(chartWidth, chartHeight); + var centerPos = new Vector3(chartRect.x, chartRect.y) + location.GetPosition(chartRect.width, chartRect.height); var pos1 = centerPos + (runtimeIsVertical ? Vector3.down : Vector3.left) * itemHeight / 2; var pos2 = centerPos + (runtimeIsVertical ? Vector3.up : Vector3.right) * itemHeight / 2; if (runtimeIsVertical) @@ -400,9 +400,9 @@ namespace XCharts } } - public bool IsInRect(Vector3 local, float chartWidth, float chartHeight, float triangleLen = 20) + public bool IsInRect(Vector3 local, Rect chartRect, float triangleLen = 20) { - var centerPos = location.GetPosition(chartWidth, chartHeight); + var centerPos = new Vector3(chartRect.x, chartRect.y) + location.GetPosition(chartRect.width, chartRect.height); var diff = calculable ? triangleLen : 0; if (local.x >= centerPos.x - itemWidth / 2 - diff && local.x <= centerPos.x + itemWidth / 2 + diff && local.y >= centerPos.y - itemHeight / 2 - diff && local.y <= centerPos.y + itemHeight / 2 + diff) @@ -415,9 +415,9 @@ namespace XCharts } } - public bool IsInRangeRect(Vector3 local, float chartWidth, float chartHeight) + public bool IsInRangeRect(Vector3 local, Rect chartRect) { - var centerPos = location.GetPosition(chartWidth, chartHeight); + var centerPos = new Vector3(chartRect.x, chartRect.y) + location.GetPosition(chartRect.width, chartRect.height); if (orient == Orient.Vertical) { var pos1 = centerPos + Vector3.down * itemHeight / 2; @@ -432,9 +432,9 @@ namespace XCharts } } - public bool IsInRangeMinRect(Vector3 local, float chartWidth, float chartHeight, float triangleLen) + public bool IsInRangeMinRect(Vector3 local, Rect chartRect, float triangleLen) { - var centerPos = location.GetPosition(chartWidth, chartHeight); + var centerPos = new Vector3(chartRect.x, chartRect.y) + location.GetPosition(chartRect.width, chartRect.height); if (orient == Orient.Vertical) { var radius = triangleLen / 2; @@ -454,9 +454,9 @@ namespace XCharts } } - public bool IsInRangeMaxRect(Vector3 local, float chartWidth, float chartHeight, float triangleLen) + public bool IsInRangeMaxRect(Vector3 local, Rect chartRect, float triangleLen) { - var centerPos = location.GetPosition(chartWidth, chartHeight); + var centerPos = new Vector3(chartRect.x, chartRect.y) + location.GetPosition(chartRect.width, chartRect.height); if (orient == Orient.Vertical) { var radius = triangleLen / 2; diff --git a/Assets/XCharts/Runtime/GaugeChart.cs b/Assets/XCharts/Runtime/GaugeChart.cs index 1593313c..074cf8b8 100644 --- a/Assets/XCharts/Runtime/GaugeChart.cs +++ b/Assets/XCharts/Runtime/GaugeChart.cs @@ -84,18 +84,17 @@ namespace XCharts private void InitAxisLabel() { - var labelObject = ChartHelper.AddObject(s_AxisLabelObjectName, transform, Vector2.zero, - Vector2.zero, Vector2.zero, new Vector2(chartWidth, chartHeight)); + var labelObject = ChartHelper.AddObject(s_AxisLabelObjectName, transform, m_ChartMinAnchor, + m_ChartMaxAnchor, m_ChartPivot, m_ChartSizeDelta); SerieLabelPool.ReleaseAll(labelObject.transform); for (int i = 0; i < m_Series.Count; i++) { var serie = m_Series.list[i]; - var serieLabel = serie.gaugeAxis.axisLabel; - serie.gaugeAxis.ClearLabelObject(); - serie.UpdateCenter(chartWidth, chartHeight); var count = serie.splitNumber > 36 ? 36 : (serie.splitNumber + 1); var startAngle = serie.startAngle; + serie.gaugeAxis.ClearLabelObject(); + SerieHelper.UpdateCenter(serie, chartPosition, chartWidth, chartHeight); for (int j = 0; j < count; j++) { var textName = ChartCached.GetSerieLabelName(s_SerieLabelObjectName, i, j); @@ -124,6 +123,12 @@ namespace XCharts base.OnThemeChanged(); } + protected override void OnSizeChanged() + { + base.OnSizeChanged(); + InitAxisLabel(); + } + private void DrawData(VertexHelper vh) { for (int i = 0; i < m_Series.Count; i++) @@ -136,7 +141,7 @@ namespace XCharts private void DrawGauge(VertexHelper vh, Serie serie) { - serie.UpdateCenter(chartWidth, chartHeight); + SerieHelper.UpdateCenter(serie, chartPosition, chartWidth, chartHeight); var destAngle = GetCurrAngle(serie, true); serie.animation.InitProgress(0, serie.startAngle, destAngle); var currAngle = serie.animation.IsFinish() ? GetCurrAngle(serie, false) : serie.animation.GetCurrDetail(); diff --git a/Assets/XCharts/Runtime/HeatmapChart.cs b/Assets/XCharts/Runtime/HeatmapChart.cs index edb1fd21..c2ed085e 100644 --- a/Assets/XCharts/Runtime/HeatmapChart.cs +++ b/Assets/XCharts/Runtime/HeatmapChart.cs @@ -115,17 +115,7 @@ namespace XCharts } } } - m_Tooltip.UpdateContentText(sb.ToString().Trim()); - var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.runtimeWidth > chartWidth) - { - pos.x = chartWidth - m_Tooltip.runtimeWidth; - } - if (pos.y - m_Tooltip.runtimeHeight < 0) - { - pos.y = m_Tooltip.runtimeHeight; - } - m_Tooltip.UpdateContentPos(pos); + TooltipHelper.SetContentAndPosition(tooltip,sb.ToString().Trim(),chartRect); m_Tooltip.SetActive(true); for (int i = 0; i < m_XAxises.Count; i++) diff --git a/Assets/XCharts/Runtime/Helper/CheckHelper.cs b/Assets/XCharts/Runtime/Helper/CheckHelper.cs index 2d5cf764..a15b3e9a 100644 --- a/Assets/XCharts/Runtime/Helper/CheckHelper.cs +++ b/Assets/XCharts/Runtime/Helper/CheckHelper.cs @@ -61,7 +61,6 @@ namespace XCharts if (legend.textStyle.color != Color.clear && legend.textStyle.color.a == 0) sb.Append("warning:legend->textStyle->color alpha is 0\n"); var serieNameList = chart.series.GetLegalSerieNameList(); - Debug.LogError("namelist:" + serieNameList.Count); if (serieNameList.Count == 0) sb.Append("warning:legend need serie.name or serieData.name not empty\n"); foreach (var category in legend.data) { diff --git a/Assets/XCharts/Runtime/Helper/LayoutHelper.cs b/Assets/XCharts/Runtime/Helper/LayoutHelper.cs new file mode 100644 index 00000000..583f927a --- /dev/null +++ b/Assets/XCharts/Runtime/Helper/LayoutHelper.cs @@ -0,0 +1,233 @@ +/******************************************/ +/* */ +/* Copyright (c) 2018 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/******************************************/ + +using UnityEngine; + +namespace XCharts +{ + public static class LayerHelper + { + private static Vector2 s_Vector0And0 = new Vector2(0, 0); + private static Vector2 s_Vector0And0Dot5 = new Vector2(0, 0.5f); + private static Vector2 s_Vector0And1 = new Vector2(0, 1f); + private static Vector2 s_Vector0Dot5And1 = new Vector2(0.5f, 1f); + private static Vector2 s_Vector0Dot5And0Dot5 = new Vector2(0.5f, 0.5f); + private static Vector2 s_Vector0Dot5And0 = new Vector2(0.5f, 0f); + private static Vector2 s_Vector1And1 = new Vector2(1f, 1f); + private static Vector2 s_Vector1And0Dot5 = new Vector2(1f, 0.5f); + private static Vector2 s_Vector1And0 = new Vector2(1f, 0); + + internal static Vector2 ResetChartPositionAndPivot(Vector2 minAnchor, Vector2 maxAnchor, float width, float height, ref float chartX, + ref float chartY) + { + if (IsLeftTop(minAnchor, maxAnchor)) + { + chartX = 0; + chartY = -height; + return s_Vector0And1; + } + else if (IsLeftCenter(minAnchor, maxAnchor)) + { + chartX = 0; + chartY = -height / 2; + return s_Vector0And0Dot5; + } + else if (IsLeftBottom(minAnchor, maxAnchor)) + { + chartX = 0; + chartY = 0; + return s_Vector0And0; + } + else if (IsCenterTop(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = -height; + return s_Vector0Dot5And1; + } + else if (IsCenterCenter(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = -height / 2; + return s_Vector0Dot5And0Dot5; + } + else if (IsCenterBottom(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = 0; + return s_Vector0Dot5And0; + } + else if (IsRightTop(minAnchor, maxAnchor)) + { + chartX = -width; + chartY = -height; + return s_Vector1And1; + } + else if (IsRightCenter(minAnchor, maxAnchor)) + { + chartX = -width; + chartY = -height / 2; + return s_Vector1And0Dot5; + } + else if (IsRightBottom(minAnchor, maxAnchor)) + { + chartX = -width; + chartY = 0; + return s_Vector1And0; + } + else if (IsStretchTop(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = -height; + return s_Vector0Dot5And1; + } + else if (IsStretchMiddle(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = -height / 2; + return s_Vector0Dot5And0Dot5; + } + else if (IsStretchBottom(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = 0; + return s_Vector0Dot5And0; + } + else if (IsStretchLeft(minAnchor, maxAnchor)) + { + chartX = 0; + chartY = -height / 2; + return s_Vector0And0Dot5; + } + else if (IsStretchCenter(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = -height / 2; + return s_Vector0Dot5And0Dot5; + } + else if (IsStretchRight(minAnchor, maxAnchor)) + { + chartX = -width; + chartY = -height / 2; + return s_Vector1And0Dot5; + } + else if (IsStretchStrech(minAnchor, maxAnchor)) + { + chartX = -width / 2; + chartY = -height / 2; + return s_Vector0Dot5And0Dot5; + } + chartX = 0; + chartY = 0; + return Vector2.zero; + } + + private static bool IsLeftTop(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0And1 && maxAnchor == s_Vector0And1; + } + + private static bool IsLeftCenter(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0And0Dot5 && maxAnchor == s_Vector0And0Dot5; + } + + private static bool IsLeftBottom(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == Vector2.zero && maxAnchor == Vector2.zero; + } + + private static bool IsCenterTop(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0Dot5And1 && maxAnchor == s_Vector0Dot5And1; + } + + private static bool IsCenterCenter(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0Dot5And0Dot5 && maxAnchor == s_Vector0Dot5And0Dot5; + } + + private static bool IsCenterBottom(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0Dot5And0 && maxAnchor == s_Vector0Dot5And0; + } + + private static bool IsRightTop(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector1And1 && maxAnchor == s_Vector1And1; + } + + private static bool IsRightCenter(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector1And0Dot5 && maxAnchor == s_Vector1And0Dot5; + } + + private static bool IsRightBottom(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector1And0 && maxAnchor == s_Vector1And0; + } + + private static bool IsStretchTop(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0And1 && maxAnchor == s_Vector1And1; + } + + private static bool IsStretchMiddle(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0And0Dot5 && maxAnchor == s_Vector1And0Dot5; + } + + private static bool IsStretchBottom(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0And0 && maxAnchor == s_Vector1And0; + } + + private static bool IsStretchLeft(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0And0 && maxAnchor == s_Vector0And1; + } + + private static bool IsStretchCenter(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0Dot5And0 && maxAnchor == s_Vector0Dot5And1; + } + + private static bool IsStretchRight(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector1And0 && maxAnchor == s_Vector1And1; + } + + private static bool IsStretchStrech(Vector2 minAnchor, Vector2 maxAnchor) + { + return minAnchor == s_Vector0And0 && maxAnchor == s_Vector1And1; + } + + public static bool IsStretchPivot(RectTransform rt) + { + return IsStretchTop(rt.anchorMin, rt.anchorMax) || + IsStretchMiddle(rt.anchorMin, rt.anchorMax) || + IsStretchBottom(rt.anchorMin, rt.anchorMax) || + IsStretchLeft(rt.anchorMin, rt.anchorMax) || + IsStretchCenter(rt.anchorMin, rt.anchorMax) || + IsStretchRight(rt.anchorMin, rt.anchorMax) || + IsStretchStrech(rt.anchorMin, rt.anchorMax); + } + + public static bool IsFixedWidthHeight(RectTransform rt) + { + return IsLeftTop(rt.anchorMin, rt.anchorMax) || + IsLeftCenter(rt.anchorMin, rt.anchorMax) || + IsLeftBottom(rt.anchorMin, rt.anchorMax) || + IsCenterTop(rt.anchorMin, rt.anchorMax) || + IsCenterCenter(rt.anchorMin, rt.anchorMax) || + IsCenterBottom(rt.anchorMin, rt.anchorMax) || + IsRightTop(rt.anchorMin, rt.anchorMax) || + IsRightCenter(rt.anchorMin, rt.anchorMax) || + IsRightBottom(rt.anchorMin, rt.anchorMax); + } + + } +} \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Helper/LayoutHelper.cs.meta b/Assets/XCharts/Runtime/Helper/LayoutHelper.cs.meta new file mode 100644 index 00000000..5d6d6574 --- /dev/null +++ b/Assets/XCharts/Runtime/Helper/LayoutHelper.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b0e7e693f76fc4853a01019b644b5d88 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Runtime/Helper/SerieHelper.cs b/Assets/XCharts/Runtime/Helper/SerieHelper.cs index ba1f320e..17a67e05 100644 --- a/Assets/XCharts/Runtime/Helper/SerieHelper.cs +++ b/Assets/XCharts/Runtime/Helper/SerieHelper.cs @@ -240,5 +240,21 @@ namespace XCharts if (itemStyle != null) return itemStyle.cornerRadius; else return null; } + + /// + /// 更新运行时中心点和半径 + /// + /// + /// + internal static void UpdateCenter(Serie serie, Vector3 chartPosition, float chartWidth, float chartHeight) + { + if (serie.center.Length < 2) return; + var centerX = serie.center[0] <= 1 ? chartWidth * serie.center[0] : serie.center[0]; + var centerY = serie.center[1] <= 1 ? chartHeight * serie.center[1] : serie.center[1]; + serie.runtimeCenterPos = chartPosition + new Vector3(centerX, centerY); + var minWidth = Mathf.Min(chartWidth, chartHeight); + serie.runtimeInsideRadius = serie.radius[0] <= 1 ? minWidth * serie.radius[0] : serie.radius[0]; + serie.runtimeOutsideRadius = serie.radius[1] <= 1 ? minWidth * serie.radius[1] : serie.radius[1]; + } } } \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Helper/TooltipHelper.cs b/Assets/XCharts/Runtime/Helper/TooltipHelper.cs index d3aa510f..0426fb35 100644 --- a/Assets/XCharts/Runtime/Helper/TooltipHelper.cs +++ b/Assets/XCharts/Runtime/Helper/TooltipHelper.cs @@ -175,6 +175,20 @@ namespace XCharts } } + public static void SetContentAndPosition(Tooltip tooltip,string content,Rect chartRect){ + tooltip.UpdateContentText(content); + var pos = tooltip.GetContentPos(); + if (pos.x + tooltip.runtimeWidth > chartRect.x + chartRect.width) + { + pos.x = chartRect.x + chartRect.width - tooltip.runtimeWidth; + } + if (pos.y - tooltip.runtimeHeight < chartRect.y) + { + pos.y = chartRect.y + tooltip.runtimeHeight; + } + tooltip.UpdateContentPos(pos); + } + public static string GetFormatterContent(Tooltip tooltip, int dataIndex, Series series, ThemeInfo themeInfo, string category = null, DataZoom dataZoom = null, bool isCartesian = false) { diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index 13536d61..851995af 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -41,6 +41,8 @@ namespace XCharts [SerializeField] protected float m_ChartWidth; [SerializeField] protected float m_ChartHeight; + [SerializeField] protected float m_ChartX; + [SerializeField] protected float m_ChartY; [SerializeField] protected ThemeInfo m_ThemeInfo; [SerializeField] protected Title m_Title = Title.defaultTitle; [SerializeField] protected Legend m_Legend = Legend.defaultLegend; @@ -52,10 +54,12 @@ namespace XCharts [SerializeField] protected string m_DebugInfo = ""; [NonSerialized] private Theme m_CheckTheme = 0; - [NonSerialized] private float m_CheckWidth = 0; - [NonSerialized] private float m_CheckHeight = 0; - [NonSerialized] private Vector2 m_CheckMinAnchor; - [NonSerialized] private Vector2 m_CheckMaxAnchor; + [NonSerialized] protected Vector3 m_ChartPosition = Vector3.zero; + [NonSerialized] protected Vector2 m_ChartMinAnchor; + [NonSerialized] protected Vector2 m_ChartMaxAnchor; + [NonSerialized] protected Vector2 m_ChartPivot; + [NonSerialized] protected Vector2 m_ChartSizeDelta; + [NonSerialized] protected Rect m_ChartRect = new Rect(0, 0, 0, 0); [NonSerialized] protected bool m_RefreshChart = false; [NonSerialized] protected bool m_RefreshLabel = false; @@ -65,9 +69,9 @@ namespace XCharts [NonSerialized] protected bool m_IsPlayingAnimation = false; [NonSerialized] protected List m_LegendRealShowName = new List(); - protected Vector2 chartAnchorMax { get { return rectTransform.anchorMax; } } - protected Vector2 chartAnchorMin { get { return rectTransform.anchorMin; } } - protected Vector2 chartPivot { get { return rectTransform.pivot; } } + protected Vector2 chartAnchorMax { get { return m_ChartMinAnchor; } } + protected Vector2 chartAnchorMin { get { return m_ChartMaxAnchor; } } + protected Vector2 chartPivot { get { return m_ChartPivot; } } protected virtual void InitComponent() { @@ -85,13 +89,10 @@ namespace XCharts m_ThemeInfo = ThemeInfo.Default; } raycastTarget = false; - rectTransform.anchorMax = Vector2.zero; - rectTransform.anchorMin = Vector2.zero; - rectTransform.pivot = Vector2.zero; - m_ChartWidth = rectTransform.sizeDelta.x; - m_ChartHeight = rectTransform.sizeDelta.y; - m_CheckWidth = m_ChartWidth; - m_CheckHeight = m_ChartHeight; + m_ChartX = 100; + m_ChartY = 100; + m_ChartWidth = rectTransform.rect.width; + m_ChartHeight = rectTransform.rect.height; m_CheckTheme = m_ThemeInfo.theme; InitComponent(); m_Series.AnimationReset(); @@ -225,7 +226,7 @@ namespace XCharts Vector2 anchorMin = m_Title.location.runtimeAnchorMin; Vector2 anchorMax = m_Title.location.runtimeAnchorMax; Vector2 pivot = m_Title.location.runtimePivot; - Vector3 titlePosition = m_Title.location.GetPosition(chartWidth, chartHeight); + Vector3 titlePosition = GetTitlePosition(); Vector3 subTitlePosition = -new Vector3(0, m_Title.textStyle.fontSize + m_Title.itemGap, 0); float titleWid = chartWidth; @@ -269,7 +270,7 @@ namespace XCharts var legendObject = ChartHelper.AddObject(s_LegendObjectName, transform, anchorMin, anchorMax, pivot, new Vector2(chartWidth, chartHeight)); - legendObject.transform.localPosition = m_Legend.location.GetPosition(chartWidth, chartHeight); + legendObject.transform.localPosition = GetLegendPosition(); m_LegendRealShowName = m_Series.GetSerieNameList(); List datas; @@ -363,14 +364,14 @@ namespace XCharts private void InitSerieLabel() { - var labelObject = ChartHelper.AddObject(s_SerieLabelObjectName, transform, Vector2.zero, - Vector2.zero, Vector2.zero, new Vector2(chartWidth, chartHeight)); + var labelObject = ChartHelper.AddObject(s_SerieLabelObjectName, transform, m_ChartMinAnchor, + m_ChartMaxAnchor, m_ChartPivot, m_ChartSizeDelta); SerieLabelPool.ReleaseAll(labelObject.transform); int count = 0; for (int i = 0; i < m_Series.Count; i++) { var serie = m_Series.list[i]; - serie.UpdateCenter(chartWidth, chartHeight); + SerieHelper.UpdateCenter(serie, chartPosition, chartWidth, chartHeight); for (int j = 0; j < serie.data.Count; j++) { var serieData = serie.data[j]; @@ -404,8 +405,8 @@ namespace XCharts private void InitSerieTitle() { - var titleObject = ChartHelper.AddObject(s_SerieTitleObjectName, transform, Vector2.zero, - Vector2.zero, Vector2.zero, new Vector2(chartWidth, chartHeight)); + var titleObject = ChartHelper.AddObject(s_SerieTitleObjectName, transform, m_ChartMinAnchor, + m_ChartMaxAnchor, m_ChartPivot, new Vector2(chartWidth, chartHeight)); ChartHelper.HideAllObject(titleObject); for (int i = 0; i < m_Series.Count; i++) { @@ -436,8 +437,8 @@ namespace XCharts private void InitTooltip() { - var tooltipObject = ChartHelper.AddObject("tooltip", transform, chartAnchorMin, - chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight)); + var tooltipObject = ChartHelper.AddObject("tooltip", transform, m_ChartMinAnchor, + m_ChartMaxAnchor, m_ChartPivot, m_ChartSizeDelta); tooltipObject.transform.localPosition = Vector3.zero; DestroyImmediate(tooltipObject.GetComponent()); var parent = tooltipObject.transform; @@ -459,24 +460,45 @@ namespace XCharts private void CheckSize() { - var sizeDelta = rectTransform.sizeDelta; - if (m_CheckWidth == 0 && m_CheckHeight == 0 && (sizeDelta.x != 0 || sizeDelta.y != 0)) + var currWidth = rectTransform.rect.width; + var currHeight = rectTransform.rect.height; + + if (m_ChartWidth == 0 && m_ChartHeight == 0 && (currWidth != 0 || currHeight != 0)) { Awake(); } - else if (m_CheckWidth != sizeDelta.x || m_CheckHeight != sizeDelta.y) - { - SetSize(sizeDelta.x, sizeDelta.y); - } - if (m_CheckMinAnchor != rectTransform.anchorMin || m_CheckMaxAnchor != rectTransform.anchorMax) + if (m_ChartWidth != currWidth || m_ChartHeight != currHeight || + m_ChartMinAnchor != rectTransform.anchorMin || m_ChartMaxAnchor != rectTransform.anchorMax) { - m_CheckMaxAnchor = rectTransform.anchorMax; - m_CheckMinAnchor = rectTransform.anchorMin; - m_ReinitLabel = true; + UpdateSize(); } } + private void UpdateSize() + { + m_ChartWidth = rectTransform.rect.width; + m_ChartHeight = rectTransform.rect.height; + + m_ChartMaxAnchor = rectTransform.anchorMax; + m_ChartMinAnchor = rectTransform.anchorMin; + m_ChartSizeDelta = rectTransform.sizeDelta; + m_ReinitLabel = true; + + rectTransform.pivot = LayerHelper.ResetChartPositionAndPivot(m_ChartMinAnchor, m_ChartMaxAnchor, + m_ChartWidth, m_ChartHeight, ref m_ChartX, ref m_ChartY); + m_ChartPivot = rectTransform.pivot; + + m_ChartRect.x = m_ChartX; + m_ChartRect.y = m_ChartY; + m_ChartRect.width = m_ChartWidth; + m_ChartRect.height = m_ChartHeight; + m_ChartPosition.x = m_ChartX; + m_ChartPosition.y = m_ChartY; + + OnSizeChanged(); + } + private void CheckLegend() { if (m_Legend.show) @@ -541,8 +563,7 @@ namespace XCharts } return; } - if (local.x < 0 || local.x > chartWidth || - local.y < 0 || local.y > chartHeight) + if (!IsInChart(local)) { if (m_Tooltip.IsActive()) { @@ -609,6 +630,7 @@ namespace XCharts m_Legend.SetAllDirty(); m_Tooltip.SetAllDirty(); m_Series.SetLabelDirty(); + RefreshChart(); } protected virtual void OnThemeChanged() @@ -721,10 +743,10 @@ namespace XCharts protected virtual void DrawBackground(VertexHelper vh) { - Vector3 p1 = new Vector3(0, chartHeight); - Vector3 p2 = new Vector3(chartWidth, chartHeight); - Vector3 p3 = new Vector3(chartWidth, 0); - Vector3 p4 = new Vector3(0, 0); + Vector3 p1 = new Vector3(chartX, chartY + chartHeight); + Vector3 p2 = new Vector3(chartX + chartWidth, chartY + chartHeight); + Vector3 p3 = new Vector3(chartX + chartWidth, chartY); + Vector3 p4 = new Vector3(chartX, chartY); ChartDrawer.DrawPolygon(vh, p1, p2, p3, p4, m_ThemeInfo.backgroundColor); } @@ -858,7 +880,6 @@ namespace XCharts public virtual void OnPointerUp(PointerEventData eventData) { - } public virtual void OnPointerEnter(PointerEventData eventData) diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs index a7a855b9..78cdca2d 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs @@ -154,6 +154,7 @@ namespace XCharts var cp3 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, cpty); var cp4 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, coordinateY - xLineDiff); ChartDrawer.DrawPolygon(vh, cp1, cp2, cp3, cp4, m_ThemeInfo.backgroundColor); + } else { @@ -168,25 +169,25 @@ namespace XCharts var yLineDiff = yAxis0.axisLine.width; var xSplitDiff = xAxis0.splitLine.lineStyle.width; var ySplitDiff = yAxis0.splitLine.lineStyle.width; - var lp1 = new Vector3(0, 0); - var lp2 = new Vector3(0, chartHeight); - var lp3 = new Vector3(coordinateX - yLineDiff, chartHeight); - var lp4 = new Vector3(coordinateX - yLineDiff, 0); + var lp1 = new Vector3(m_ChartX, m_ChartY); + var lp2 = new Vector3(m_ChartX, m_ChartY + chartHeight); + var lp3 = new Vector3(coordinateX - yLineDiff, m_ChartY + chartHeight); + var lp4 = new Vector3(coordinateX - yLineDiff, m_ChartY); ChartDrawer.DrawPolygon(vh, lp1, lp2, lp3, lp4, m_ThemeInfo.backgroundColor); - var rp1 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, 0); - var rp2 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, chartHeight); - var rp3 = new Vector3(chartWidth, chartHeight); - var rp4 = new Vector3(chartWidth, 0); + var rp1 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, m_ChartY); + var rp2 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, m_ChartY + chartHeight); + var rp3 = new Vector3(m_ChartX + chartWidth, m_ChartY + chartHeight); + var rp4 = new Vector3(m_ChartX + chartWidth, m_ChartY); ChartDrawer.DrawPolygon(vh, rp1, rp2, rp3, rp4, m_ThemeInfo.backgroundColor); var up1 = new Vector3(coordinateX - yLineDiff, coordinateY + coordinateHeight + ySplitDiff); - var up2 = new Vector3(coordinateX - yLineDiff, chartHeight); - var up3 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, chartHeight); + var up2 = new Vector3(coordinateX - yLineDiff, m_ChartY + chartHeight); + var up3 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, m_ChartY + chartHeight); var up4 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, coordinateY + coordinateHeight + ySplitDiff); ChartDrawer.DrawPolygon(vh, up1, up2, up3, up4, m_ThemeInfo.backgroundColor); - var dp1 = new Vector3(coordinateX - yLineDiff, 0); + var dp1 = new Vector3(coordinateX - yLineDiff, m_ChartY); var dp2 = new Vector3(coordinateX - yLineDiff, coordinateY - xLineDiff); var dp3 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, coordinateY - xLineDiff); - var dp4 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, 0); + var dp4 = new Vector3(coordinateX + coordinateWidth + xSplitDiff, m_ChartY); ChartDrawer.DrawPolygon(vh, dp1, dp2, dp3, dp4, m_ThemeInfo.backgroundColor); } @@ -407,17 +408,7 @@ namespace XCharts var category = tempAxis.GetData(index, m_DataZoom); var content = TooltipHelper.GetFormatterContent(m_Tooltip, index, m_Series, m_ThemeInfo, category, m_DataZoom, isCartesian); - m_Tooltip.UpdateContentText(content); - var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.runtimeWidth > chartWidth) - { - pos.x = chartWidth - m_Tooltip.runtimeWidth; - } - if (pos.y - m_Tooltip.runtimeHeight < 0) - { - pos.y = m_Tooltip.runtimeHeight; - } - m_Tooltip.UpdateContentPos(pos); + TooltipHelper.SetContentAndPosition(m_Tooltip, content, chartRect); m_Tooltip.SetActive(true); for (int i = 0; i < m_XAxises.Count; i++) @@ -800,16 +791,16 @@ namespace XCharts { if (axis is XAxis) { - m_Series.GetXMinMaxValue(m_DataZoom, axisIndex, true, axis.inverse, out tempMinValue, out tempMaxValue); + m_Series.GetXMinMaxValue(null, axisIndex, true, axis.inverse, out tempMinValue, out tempMaxValue); } else { - m_Series.GetYMinMaxValue(m_DataZoom, axisIndex, true, axis.inverse, out tempMinValue, out tempMaxValue); + m_Series.GetYMinMaxValue(null, axisIndex, true, axis.inverse, out tempMinValue, out tempMaxValue); } } else { - m_Series.GetYMinMaxValue(m_DataZoom, axisIndex, false, axis.inverse, out tempMinValue, out tempMaxValue); + m_Series.GetYMinMaxValue(null, axisIndex, false, axis.inverse, out tempMinValue, out tempMaxValue); } axis.AdjustMinMaxValue(ref tempMinValue, ref tempMaxValue, true); if (tempMinValue != axis.runtimeMinValue || tempMaxValue != axis.runtimeMaxValue) @@ -1120,10 +1111,10 @@ namespace XCharts { if (!m_DataZoom.enable || !m_DataZoom.supportSlider) return; var hig = m_DataZoom.GetHeight(grid.bottom); - var p1 = new Vector2(coordinateX, m_DataZoom.bottom); - var p2 = new Vector2(coordinateX, m_DataZoom.bottom + hig); - var p3 = new Vector2(coordinateX + coordinateWidth, m_DataZoom.bottom + hig); - var p4 = new Vector2(coordinateX + coordinateWidth, m_DataZoom.bottom); + var p1 = new Vector3(coordinateX, m_ChartY + m_DataZoom.bottom); + var p2 = new Vector3(coordinateX, m_ChartY + m_DataZoom.bottom + hig); + var p3 = new Vector3(coordinateX + coordinateWidth, m_ChartY + m_DataZoom.bottom + hig); + var p4 = new Vector3(coordinateX + coordinateWidth, m_ChartY + m_DataZoom.bottom); var xAxis = xAxises[0]; ChartDrawer.DrawLine(vh, p1, p2, xAxis.axisLine.width, m_ThemeInfo.dataZoomLineColor); ChartDrawer.DrawLine(vh, p2, p3, xAxis.axisLine.width, m_ThemeInfo.dataZoomLineColor); @@ -1155,9 +1146,11 @@ namespace XCharts float value = SampleValue(ref showData, serie.sampleType, rate, serie.minShow, maxCount, totalAverage, i, serie.animation.GetUpdateAnimationDuration(), ref dataChanging, axis.inverse); float pX = coordinateX + i * scaleWid; - float dataHig = (axis.runtimeMaxValue - axis.runtimeMinValue) == 0 ? 0 : - (value - axis.runtimeMinValue) / (axis.runtimeMaxValue - axis.runtimeMinValue) * hig; - np = new Vector3(pX, m_DataZoom.bottom + dataHig); + // float dataHig = (axis.runtimeMaxValue - axis.runtimeMinValue) == 0 ? 0 : + // (value - axis.runtimeMinValue) / (axis.runtimeMaxValue - axis.runtimeMinValue) * hig; + float dataHig = (maxValue - minValue) == 0 ? 0 : + (value - minValue) / (maxValue - minValue) * hig; + np = new Vector3(pX, m_ChartY + m_DataZoom.bottom + dataHig); if (i > 0) { Color color = m_ThemeInfo.dataZoomLineColor; @@ -1165,8 +1158,8 @@ namespace XCharts Vector3 alp = new Vector3(lp.x, lp.y - xAxis.axisLine.width); Vector3 anp = new Vector3(np.x, np.y - xAxis.axisLine.width); Color areaColor = new Color(color.r, color.g, color.b, color.a * 0.75f); - Vector3 tnp = new Vector3(np.x, m_DataZoom.bottom + xAxis.axisLine.width); - Vector3 tlp = new Vector3(lp.x, m_DataZoom.bottom + xAxis.axisLine.width); + Vector3 tnp = new Vector3(np.x, m_ChartY + m_DataZoom.bottom + xAxis.axisLine.width); + Vector3 tlp = new Vector3(lp.x, m_ChartY + m_DataZoom.bottom + xAxis.axisLine.width); ChartDrawer.DrawPolygon(vh, alp, anp, tnp, tlp, areaColor); } lp = np; @@ -1181,10 +1174,10 @@ namespace XCharts case DataZoom.RangeMode.Percent: var start = coordinateX + coordinateWidth * m_DataZoom.start / 100; var end = coordinateX + coordinateWidth * m_DataZoom.end / 100; - p1 = new Vector2(start, m_DataZoom.bottom); - p2 = new Vector2(start, m_DataZoom.bottom + hig); - p3 = new Vector2(end, m_DataZoom.bottom + hig); - p4 = new Vector2(end, m_DataZoom.bottom); + p1 = new Vector2(start, m_ChartY + m_DataZoom.bottom); + p2 = new Vector2(start, m_ChartY + m_DataZoom.bottom + hig); + p3 = new Vector2(end, m_ChartY + m_DataZoom.bottom + hig); + p4 = new Vector2(end, m_ChartY + m_DataZoom.bottom); ChartDrawer.DrawPolygon(vh, p1, p2, p3, p4, m_ThemeInfo.dataZoomSelectedColor); ChartDrawer.DrawLine(vh, p1, p2, xAxis.axisLine.width, m_ThemeInfo.dataZoomSelectedColor); ChartDrawer.DrawLine(vh, p3, p4, xAxis.axisLine.width, m_ThemeInfo.dataZoomSelectedColor); @@ -1337,9 +1330,9 @@ namespace XCharts m_DataZoom.SetLabelActive(false); return; } - if (m_DataZoom.IsInSelectedZoom(local, coordinateX, coordinateWidth) - || m_DataZoom.IsInStartZoom(local, coordinateX, coordinateWidth) - || m_DataZoom.IsInEndZoom(local, coordinateX, coordinateWidth)) + if (m_DataZoom.IsInSelectedZoom(local, coordinateX, chartY, coordinateWidth) + || m_DataZoom.IsInStartZoom(local, coordinateX, chartY, coordinateWidth) + || m_DataZoom.IsInEndZoom(local, coordinateX, chartY, coordinateWidth)) { m_DataZoom.SetLabelActive(true); RefreshDataZoomLabel(); @@ -1370,8 +1363,8 @@ namespace XCharts var start = coordinateX + coordinateWidth * m_DataZoom.start / 100; var end = coordinateX + coordinateWidth * m_DataZoom.end / 100; var hig = m_DataZoom.GetHeight(grid.bottom); - m_DataZoom.UpdateStartLabelPosition(new Vector3(start - 10, m_DataZoom.bottom + hig / 2)); - m_DataZoom.UpdateEndLabelPosition(new Vector3(end + 10, m_DataZoom.bottom + hig / 2)); + m_DataZoom.UpdateStartLabelPosition(new Vector3(start - 10, chartY + m_DataZoom.bottom + hig / 2)); + m_DataZoom.UpdateEndLabelPosition(new Vector3(end + 10, chartY + m_DataZoom.bottom + hig / 2)); } } @@ -1523,15 +1516,15 @@ namespace XCharts } if (m_DataZoom.supportSlider) { - if (m_DataZoom.IsInStartZoom(pos, coordinateX, coordinateWidth)) + if (m_DataZoom.IsInStartZoom(pos, coordinateX, chartY, coordinateWidth)) { m_DataZoomStartDrag = true; } - else if (m_DataZoom.IsInEndZoom(pos, coordinateX, coordinateWidth)) + else if (m_DataZoom.IsInEndZoom(pos, coordinateX, chartY, coordinateWidth)) { m_DataZoomEndDrag = true; } - else if (m_DataZoom.IsInSelectedZoom(pos, coordinateX, coordinateWidth)) + else if (m_DataZoom.IsInSelectedZoom(pos, coordinateX, chartY, coordinateWidth)) { m_DataZoomDrag = true; } @@ -1656,13 +1649,14 @@ namespace XCharts { return; } - if (m_DataZoom.IsInStartZoom(localPos, coordinateX, coordinateWidth) || - m_DataZoom.IsInEndZoom(localPos, coordinateX, coordinateWidth)) + + if (m_DataZoom.IsInStartZoom(localPos, coordinateX, chartY, coordinateWidth) || + m_DataZoom.IsInEndZoom(localPos, coordinateX, chartY, coordinateWidth)) { return; } - if (m_DataZoom.IsInZoom(localPos, coordinateX, coordinateWidth) - && !m_DataZoom.IsInSelectedZoom(localPos, coordinateX, coordinateWidth)) + if (m_DataZoom.IsInZoom(localPos, coordinateX, chartY, coordinateWidth) + && !m_DataZoom.IsInSelectedZoom(localPos, coordinateX, chartY, coordinateWidth)) { var pointerX = localPos.x; var selectWidth = coordinateWidth * (m_DataZoom.end - m_DataZoom.start) / 100; @@ -1688,14 +1682,14 @@ namespace XCharts public override void OnScroll(PointerEventData eventData) { if (Input.touchCount > 1) return; - if (!m_DataZoom.enable || m_DataZoom.zoomLock || !m_DataZoom.supportInside) return; + if (!m_DataZoom.enable || m_DataZoom.zoomLock) return; Vector2 pos; if (!RectTransformUtility.ScreenPointToLocalPointInRectangle(rectTransform, eventData.position, canvas.worldCamera, out pos)) { return; } - if (!IsInCooridate(pos)) + if (!IsInCooridate(pos) && !m_DataZoom.IsInSelectedZoom(pos, coordinateX, chartY, coordinateWidth)) { return; } diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs index fad33d03..18206655 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs @@ -31,9 +31,9 @@ namespace XCharts } return; } - if (local.x < 0 || local.x > chartWidth || - local.y < 0 || local.y > chartHeight || - !m_VisualMap.IsInRangeRect(local, chartWidth, chartHeight)) + if (local.x < chartX || local.x > chartX + chartWidth || + local.y < chartY || local.y > chartY + chartHeight || + !m_VisualMap.IsInRangeRect(local, chartRect)) { if (m_VisualMap.runtimeSelectedIndex >= 0) { @@ -45,7 +45,7 @@ namespace XCharts var pos1 = Vector3.zero; var pos2 = Vector3.zero; var halfHig = m_VisualMap.itemHeight / 2; - var centerPos = m_VisualMap.location.GetPosition(chartWidth, chartHeight); + var centerPos = chartPosition + m_VisualMap.location.GetPosition(chartWidth, chartHeight); var selectedIndex = -1; var value = 0f; switch (m_VisualMap.orient) @@ -71,8 +71,8 @@ namespace XCharts protected void OnDragVisualMapStart() { if (!m_VisualMap.enable || !m_VisualMap.show || !m_VisualMap.calculable) return; - var inMinRect = m_VisualMap.IsInRangeMinRect(pointerPos, chartWidth, chartHeight, m_Settings.visualMapTriangeLen); - var inMaxRect = m_VisualMap.IsInRangeMaxRect(pointerPos, chartWidth, chartHeight, m_Settings.visualMapTriangeLen); + var inMinRect = m_VisualMap.IsInRangeMinRect(pointerPos, chartRect, m_Settings.visualMapTriangeLen); + var inMaxRect = m_VisualMap.IsInRangeMaxRect(pointerPos, chartRect, m_Settings.visualMapTriangeLen); if (inMinRect || inMaxRect) { if (inMinRect) @@ -91,7 +91,7 @@ namespace XCharts if (!m_VisualMap.enable || !m_VisualMap.show || !m_VisualMap.calculable) return; if (!m_VisualMapMinDrag && !m_VisualMapMaxDrag) return; - var value = m_VisualMap.GetValue(pointerPos, chartWidth, chartHeight); + var value = m_VisualMap.GetValue(pointerPos, chartRect); if (m_VisualMapMinDrag) { m_VisualMap.rangeMin = value; @@ -202,7 +202,7 @@ namespace XCharts protected void DrawVisualMap(VertexHelper vh) { if (!m_VisualMap.enable || !m_VisualMap.show) return; - var centerPos = m_VisualMap.location.GetPosition(chartWidth, chartHeight); + var centerPos = chartPosition + m_VisualMap.location.GetPosition(chartWidth, chartHeight); var pos1 = Vector3.zero; var pos2 = Vector3.zero; diff --git a/Assets/XCharts/Runtime/PieChart.cs b/Assets/XCharts/Runtime/PieChart.cs index a83be3cf..42345a06 100644 --- a/Assets/XCharts/Runtime/PieChart.cs +++ b/Assets/XCharts/Runtime/PieChart.cs @@ -67,7 +67,7 @@ namespace XCharts if (serie.pieClickOffset) isClickOffset = true; serie.runtimePieDataMax = serie.yMax; serie.runtimePieDataTotal = serie.yTotal; - serie.UpdateCenter(chartWidth, chartHeight); + SerieHelper.UpdateCenter(serie, chartPosition, chartWidth, chartHeight); float totalDegree = 360; float startDegree = 0; @@ -567,17 +567,7 @@ namespace XCharts if (index < 0) continue; showTooltip = true; var content = TooltipHelper.GetFormatterContent(m_Tooltip, index, m_Series, m_ThemeInfo); - m_Tooltip.UpdateContentText(content); - var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.runtimeWidth > chartWidth) - { - pos.x = chartWidth - m_Tooltip.runtimeWidth; - } - if (pos.y - m_Tooltip.runtimeHeight < 0) - { - pos.y = m_Tooltip.runtimeHeight; - } - m_Tooltip.UpdateContentPos(pos); + TooltipHelper.SetContentAndPosition(tooltip, content, chartRect); } m_Tooltip.SetActive(showTooltip); } diff --git a/Assets/XCharts/Runtime/RadarChart.cs b/Assets/XCharts/Runtime/RadarChart.cs index 269a3cf0..5539c7d0 100644 --- a/Assets/XCharts/Runtime/RadarChart.cs +++ b/Assets/XCharts/Runtime/RadarChart.cs @@ -103,13 +103,19 @@ namespace XCharts } #endif + protected override void OnSizeChanged() + { + base.OnSizeChanged(); + m_RadarsDirty = true; + } + private void InitIndicator() { ChartHelper.HideAllObject(transform, INDICATOR_TEXT); for (int n = 0; n < m_Radars.Count; n++) { Radar radar = m_Radars[n]; - radar.UpdateRadarCenter(chartWidth, chartHeight); + radar.UpdateRadarCenter(chartPosition, chartWidth, chartHeight); int indicatorNum = radar.indicatorList.Count; float txtWid = 100; float txtHig = 20; @@ -165,7 +171,7 @@ namespace XCharts base.DrawChart(vh); foreach (var radar in m_Radars) { - radar.UpdateRadarCenter(chartWidth, chartHeight); + radar.UpdateRadarCenter(chartPosition, chartWidth, chartHeight); if (radar.shape == Radar.Shape.Circle) { DrawCricleRadar(vh, radar); @@ -712,17 +718,7 @@ namespace XCharts var radar = m_Radars[serie.radarIndex]; StringBuilder sb = new StringBuilder(); TooltipHelper.InitRadarTooltip(ref sb, tooltip, serie, radar, themeInfo); - m_Tooltip.UpdateContentText(sb.ToString()); - var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.runtimeWidth > chartWidth) - { - pos.x = chartWidth - m_Tooltip.runtimeWidth; - } - if (pos.y - m_Tooltip.runtimeHeight < 0) - { - pos.y = m_Tooltip.runtimeHeight; - } - m_Tooltip.UpdateContentPos(pos); + TooltipHelper.SetContentAndPosition(tooltip, sb.ToString(), chartRect); } protected override void OnRefreshLabel() diff --git a/Assets/XCharts/Runtime/RingChart.cs b/Assets/XCharts/Runtime/RingChart.cs index ca5b7408..a6e696e2 100644 --- a/Assets/XCharts/Runtime/RingChart.cs +++ b/Assets/XCharts/Runtime/RingChart.cs @@ -73,7 +73,7 @@ namespace XCharts continue; } serie.animation.InitProgress(data.Count, serie.startAngle, serie.startAngle + 360); - serie.UpdateCenter(chartWidth, chartHeight); + SerieHelper.UpdateCenter(serie, chartPosition, chartWidth, chartHeight); TitleStyleHelper.CheckTitle(serie, ref m_ReinitTitle, ref m_UpdateTitleText); SerieLabelHelper.CheckLabel(serie, ref m_ReinitLabel, ref m_UpdateLabelText); var dataChangeDuration = serie.animation.GetUpdateAnimationDuration(); @@ -330,18 +330,7 @@ namespace XCharts if (index < 0) continue; showTooltip = true; var content = TooltipHelper.GetFormatterContent(m_Tooltip, index, m_Series, m_ThemeInfo); - m_Tooltip.UpdateContentText(content); - - var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.runtimeWidth > chartWidth) - { - pos.x = chartWidth - m_Tooltip.runtimeWidth; - } - if (pos.y - m_Tooltip.runtimeHeight < 0) - { - pos.y = m_Tooltip.runtimeHeight; - } - m_Tooltip.UpdateContentPos(pos); + TooltipHelper.SetContentAndPosition(tooltip,content,chartRect); } m_Tooltip.SetActive(showTooltip); } diff --git a/Assets/XCharts/Runtime/ScatterChart.cs b/Assets/XCharts/Runtime/ScatterChart.cs index 182669b9..3b8d9af5 100644 --- a/Assets/XCharts/Runtime/ScatterChart.cs +++ b/Assets/XCharts/Runtime/ScatterChart.cs @@ -111,18 +111,7 @@ namespace XCharts if (m_Tooltip.isAnySerieDataIndex()) { var content = TooltipHelper.GetFormatterContent(m_Tooltip, 0, m_Series, m_ThemeInfo); - m_Tooltip.UpdateContentText(content); - - var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.runtimeWidth > chartWidth) - { - pos.x = chartWidth - m_Tooltip.runtimeWidth; - } - if (pos.y - m_Tooltip.runtimeHeight < 0) - { - pos.y = m_Tooltip.runtimeHeight; - } - m_Tooltip.UpdateContentPos(pos); + TooltipHelper.SetContentAndPosition(tooltip, content, chartRect); m_Tooltip.SetActive(true); } else diff --git a/Assets/XChartsDemo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity index 001cc04d..c2739240 100644 --- a/Assets/XChartsDemo/demo_xchart.unity +++ b/Assets/XChartsDemo/demo_xchart.unity @@ -145,7 +145,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &65642 @@ -573,7 +573,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1146193 @@ -647,7 +647,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 146, y: -122.3} + m_AnchoredPosition: {x: 146, y: -122.29999} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1185844 @@ -859,11 +859,11 @@ RectTransform: m_Father: {fileID: 1520897807} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2408609 GameObject: m_ObjectHideFlags: 0 @@ -896,11 +896,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2964666 GameObject: m_ObjectHideFlags: 0 @@ -1839,7 +1839,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &5222691 @@ -1907,7 +1907,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &5735390 @@ -2036,18 +2036,18 @@ RectTransform: m_GameObject: {fileID: 5956184} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 483858517} - {fileID: 1663864643} m_Father: {fileID: 2131791587} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &6295763 GameObject: m_ObjectHideFlags: 0 @@ -2222,7 +2222,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &7020699 @@ -2287,17 +2287,17 @@ RectTransform: m_GameObject: {fileID: 7184211} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 85661447} m_Father: {fileID: 1128003316} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &7185806 GameObject: m_ObjectHideFlags: 0 @@ -2498,7 +2498,7 @@ RectTransform: m_GameObject: {fileID: 7601564} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 802150652} - {fileID: 726244938} @@ -2507,9 +2507,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &7891577 GameObject: m_ObjectHideFlags: 0 @@ -3023,7 +3023,7 @@ RectTransform: m_GameObject: {fileID: 9261010} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1512794341} - {fileID: 1448190519} @@ -3035,9 +3035,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &9459097 GameObject: m_ObjectHideFlags: 0 @@ -3173,7 +3173,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &10601731 @@ -3562,7 +3562,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &11775400 @@ -4430,7 +4430,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:1... + m_Text: 09:0... --- !u!222 &13892479 CanvasRenderer: m_ObjectHideFlags: 0 @@ -5095,7 +5095,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &16548731 @@ -5131,7 +5131,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &16548733 @@ -6086,7 +6086,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &18151463 @@ -6224,7 +6224,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &18434523 @@ -6551,7 +6551,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &20008438 @@ -6654,7 +6654,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &20101501 @@ -6689,7 +6689,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &20157213 @@ -6860,7 +6860,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &20269568 @@ -7686,14 +7686,14 @@ RectTransform: m_GameObject: {fileID: 22346744} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 946620814} 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: 42, y: 30} + m_AnchoredPosition: {x: 142, y: 130} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &22346746 @@ -7728,7 +7728,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 0 + m_Text: --- !u!222 &22346747 CanvasRenderer: m_ObjectHideFlags: 0 @@ -7841,7 +7841,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &23017196 @@ -7985,11 +7985,11 @@ RectTransform: m_Father: {fileID: 1867673941} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &23315812 GameObject: m_ObjectHideFlags: 0 @@ -9156,7 +9156,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &27757632 @@ -9511,7 +9511,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &29142411 @@ -10153,7 +10153,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &31012562 @@ -10655,9 +10655,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1824} + m_AnchoredPosition: {x: 4, y: -1524} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &33516771 MonoBehaviour: m_ObjectHideFlags: 0 @@ -10679,6 +10679,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -11115,8 +11117,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -12242,8 +12244,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -13369,8 +13371,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -14496,8 +14498,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -16429,7 +16431,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &35353043 @@ -16567,7 +16569,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &35765609 @@ -17417,7 +17419,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &39114343 @@ -17632,11 +17634,11 @@ RectTransform: m_Father: {fileID: 585854007} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &40822003 GameObject: m_ObjectHideFlags: 0 @@ -18628,7 +18630,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &43484390 @@ -18941,7 +18943,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 163.75, y: -74.14286} + m_AnchoredPosition: {x: 163.75, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &44307028 @@ -19044,7 +19046,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &44739052 @@ -19219,11 +19221,11 @@ RectTransform: m_Father: {fileID: 1867673941} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &45664689 GameObject: m_ObjectHideFlags: 0 @@ -20178,11 +20180,11 @@ RectTransform: m_Father: {fileID: 2057043785} m_RootOrder: 32 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &47894584 GameObject: m_ObjectHideFlags: 0 @@ -20247,11 +20249,11 @@ RectTransform: m_Father: {fileID: 1580042357} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &48124110 GameObject: m_ObjectHideFlags: 0 @@ -20500,7 +20502,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &48596162 @@ -20751,7 +20753,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &49166983 @@ -21817,7 +21819,7 @@ RectTransform: m_GameObject: {fileID: 51371009} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1961150959} - {fileID: 1375842340} @@ -22194,11 +22196,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &51550652 GameObject: m_ObjectHideFlags: 0 @@ -22556,7 +22558,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &52049424 @@ -22774,7 +22776,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &52969751 @@ -23729,9 +23731,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &57876801 GameObject: m_ObjectHideFlags: 0 @@ -23906,7 +23908,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &58986755 @@ -24072,7 +24074,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &59826073 RectTransform: m_ObjectHideFlags: 0 @@ -24162,7 +24164,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 88.07617, y: 43.651733} + m_AnchoredPosition: {x: 88.07617, y: 43.65174} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &60097516 @@ -24483,7 +24485,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &61489812 @@ -24695,7 +24697,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &62055311 @@ -25295,9 +25297,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &63094374 GameObject: m_ObjectHideFlags: 0 @@ -25757,7 +25759,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &64098109 @@ -26759,7 +26761,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &66562870 @@ -27436,7 +27438,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &67821512 @@ -27472,11 +27474,11 @@ RectTransform: m_Father: {fileID: 517131343} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &68551422 GameObject: m_ObjectHideFlags: 0 @@ -27971,7 +27973,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &69515481 @@ -28683,7 +28685,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &72499465 @@ -28822,7 +28824,7 @@ RectTransform: m_GameObject: {fileID: 72797015} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 2139726301} - {fileID: 270506479} @@ -28831,7 +28833,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &73423095 @@ -28940,7 +28942,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &73557343 @@ -29118,7 +29120,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &73985467 @@ -29251,7 +29253,7 @@ RectTransform: m_GameObject: {fileID: 74205074} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 898747249} m_RootOrder: 1 @@ -30269,11 +30271,11 @@ RectTransform: m_Father: {fileID: 2086937787} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &76381236 GameObject: m_ObjectHideFlags: 0 @@ -30602,7 +30604,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &77554054 @@ -30711,7 +30713,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &77904279 @@ -31893,7 +31895,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &80920029 @@ -32211,7 +32213,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &81986196 @@ -33446,7 +33448,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &85661448 @@ -34162,9 +34164,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -304} + m_AnchoredPosition: {x: 4, y: -4} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &87068266 MonoBehaviour: m_ObjectHideFlags: 0 @@ -34186,6 +34188,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -36262,7 +36266,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &87403656 @@ -36540,7 +36544,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &87923514 @@ -37435,7 +37439,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &90524884 @@ -38042,7 +38046,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &91931491 @@ -38543,7 +38547,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &93873862 @@ -38611,9 +38615,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &94076288 GameObject: m_ObjectHideFlags: 0 @@ -38965,7 +38969,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &94698320 @@ -39074,7 +39078,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &95141583 @@ -39109,7 +39113,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &95170955 @@ -39360,7 +39364,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &95444389 @@ -40528,11 +40532,11 @@ RectTransform: m_Father: {fileID: 1640796314} m_RootOrder: 17 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &98374345 GameObject: m_ObjectHideFlags: 0 @@ -40851,7 +40855,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &99321125 @@ -41493,11 +41497,11 @@ RectTransform: m_Father: {fileID: 1107243629} m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &101196350 GameObject: m_ObjectHideFlags: 0 @@ -41811,7 +41815,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &102418203 @@ -42171,7 +42175,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &103526929 @@ -42274,7 +42278,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &103596828 @@ -42309,7 +42313,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &103734466 @@ -42805,7 +42809,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &105968702 @@ -42976,7 +42980,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &106087268 @@ -43777,9 +43781,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &107362718 GameObject: m_ObjectHideFlags: 0 @@ -43812,7 +43816,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &107376197 @@ -44236,9 +44240,83 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &108223603 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 108223604} + - component: {fileID: 108223606} + - component: {fileID: 108223605} + m_Layer: 0 + m_Name: axis_x6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &108223604 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 108223603} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1698887230} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1065.04, y: -325} + m_SizeDelta: {x: 156.16, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &108223605 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 108223603} + 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.31764707, g: 0.3019608, b: 0.3019608, 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: 18 + 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: 09:02:10 +--- !u!222 &108223606 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 108223603} --- !u!1 &108245404 GameObject: m_ObjectHideFlags: 0 @@ -44658,7 +44736,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &108624109 @@ -44693,7 +44771,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &108624111 @@ -45261,7 +45339,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &110000039 @@ -45401,7 +45479,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 149.39337, y: -59.47666} + m_AnchoredPosition: {x: 149.39337, y: -59.476654} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &110451024 @@ -45915,9 +45993,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -684} + m_AnchoredPosition: {x: 4, y: -346} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &111780572 MonoBehaviour: m_ObjectHideFlags: 0 @@ -45939,6 +46017,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -63259,7 +63339,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &112915906 @@ -63537,7 +63617,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &113668398 @@ -63577,9 +63657,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &113725201 GameObject: m_ObjectHideFlags: 0 @@ -63960,7 +64040,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &115172235 @@ -64143,7 +64223,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &115726479 @@ -64350,7 +64430,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &116251642 @@ -65021,9 +65101,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &118460041 GameObject: m_ObjectHideFlags: 0 @@ -65197,9 +65277,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &119204505 GameObject: m_ObjectHideFlags: 0 @@ -65659,11 +65739,11 @@ RectTransform: m_Father: {fileID: 963730291} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &120224185 GameObject: m_ObjectHideFlags: 0 @@ -66442,7 +66522,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &124144037 @@ -66652,9 +66732,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &124410243 GameObject: m_ObjectHideFlags: 0 @@ -66687,7 +66767,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &124410245 @@ -66835,7 +66915,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &124673619 @@ -66945,7 +67025,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -310} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &124775145 @@ -67058,9 +67138,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1216} + m_AnchoredPosition: {x: 4, y: -916} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &124833370 MonoBehaviour: m_ObjectHideFlags: 0 @@ -67082,6 +67162,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -67522,8 +67604,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -68649,8 +68731,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -69776,8 +69858,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -70903,8 +70985,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -72030,8 +72112,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -73958,9 +74040,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &126449944 GameObject: m_ObjectHideFlags: 0 @@ -74129,7 +74211,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &127493248 @@ -74236,9 +74318,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &127589501 GameObject: m_ObjectHideFlags: 0 @@ -74341,7 +74423,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &127761380 @@ -74376,7 +74458,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &127761382 @@ -74450,7 +74532,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &127857017 @@ -74594,7 +74676,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &128372625 @@ -74738,7 +74820,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &128548068 @@ -74812,9 +74894,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &128641795 GameObject: m_ObjectHideFlags: 0 @@ -75068,9 +75150,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &129842867 GameObject: m_ObjectHideFlags: 0 @@ -75129,7 +75211,7 @@ RectTransform: m_GameObject: {fileID: 130197282} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1238245386} - {fileID: 1433412002} @@ -75138,7 +75220,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &130285129 @@ -75824,7 +75906,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &132308085 @@ -76001,7 +76083,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &132702207 @@ -76139,7 +76221,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &132928071 @@ -76174,7 +76256,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &133069658 @@ -76279,7 +76361,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &133904150 @@ -76561,7 +76643,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &134496873 @@ -76655,7 +76737,7 @@ RectTransform: m_GameObject: {fileID: 134543938} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 761780044} - {fileID: 1146589297} @@ -76667,9 +76749,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &134694769 GameObject: m_ObjectHideFlags: 0 @@ -76865,7 +76947,7 @@ RectTransform: m_GameObject: {fileID: 135081564} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 147405615} m_RootOrder: 1 @@ -76907,7 +76989,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &135212712 @@ -77045,7 +77127,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &135229961 @@ -77119,7 +77201,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &135820986 @@ -77193,7 +77275,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &136428022 @@ -77228,7 +77310,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &136438231 @@ -77526,9 +77608,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -912} + m_AnchoredPosition: {x: 4, y: -612} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &137406609 MonoBehaviour: m_ObjectHideFlags: 0 @@ -77550,6 +77632,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -80303,7 +80387,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &137552809 @@ -80372,7 +80456,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &137939728 @@ -80508,7 +80592,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &138410562 @@ -80801,7 +80885,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &138914066 @@ -81073,7 +81157,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &139438518 @@ -81739,7 +81823,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &140824590 @@ -81774,7 +81858,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &140831544 @@ -82093,7 +82177,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &141542570 @@ -82379,7 +82463,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &143973649 @@ -82730,7 +82814,7 @@ RectTransform: m_GameObject: {fileID: 144237403} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1381203687} - {fileID: 899549427} @@ -82742,9 +82826,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &144300513 GameObject: m_ObjectHideFlags: 0 @@ -83247,7 +83331,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &145790891 @@ -83315,7 +83399,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &146066450 @@ -83351,11 +83435,11 @@ RectTransform: m_Father: {fileID: 358352446} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &146071837 GameObject: m_ObjectHideFlags: 0 @@ -84046,9 +84130,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -608} + m_AnchoredPosition: {x: 4, y: -308} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &147405616 MonoBehaviour: m_ObjectHideFlags: 0 @@ -84070,6 +84154,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -86001,7 +86087,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 138.88077, y: -71.280525} + m_AnchoredPosition: {x: 138.88077, y: -71.28052} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &148199050 @@ -86036,7 +86122,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &148202745 @@ -86071,7 +86157,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &148656048 @@ -86110,8 +86196,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -30.174755} - m_SizeDelta: {x: 84.135925, y: 13.087378} + m_AnchoredPosition: {x: 0, y: -32} + m_SizeDelta: {x: 86, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &148656050 MonoBehaviour: @@ -87322,7 +87408,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &152253793 @@ -87392,7 +87478,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 229.25, y: 74.42857} + m_AnchoredPosition: {x: 229.25, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &152593960 @@ -87589,7 +87675,7 @@ RectTransform: m_GameObject: {fileID: 152691923} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 636920868} - {fileID: 1044744226} @@ -87601,9 +87687,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &152886377 GameObject: m_ObjectHideFlags: 0 @@ -88498,7 +88584,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &155839407 @@ -89107,7 +89193,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &157289660 @@ -89245,7 +89331,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &157630434 @@ -90224,18 +90310,18 @@ RectTransform: m_GameObject: {fileID: 159282020} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2025530894} - {fileID: 1213254895} m_Father: {fileID: 544069994} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &159433436 GameObject: m_ObjectHideFlags: 0 @@ -90303,7 +90389,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:1... + m_Text: 09:0... --- !u!222 &159433439 CanvasRenderer: m_ObjectHideFlags: 0 @@ -90702,7 +90788,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &160668450 @@ -90811,7 +90897,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &160947392 @@ -90843,11 +90929,11 @@ RectTransform: m_Father: {fileID: 449267886} m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &161184053 GameObject: m_ObjectHideFlags: 0 @@ -90880,7 +90966,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &161350628 @@ -91472,14 +91558,14 @@ RectTransform: m_GameObject: {fileID: 162925817} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 946620814} 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: 42, y: 94.5} + m_AnchoredPosition: {x: 142, y: 194.5} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &162925819 @@ -91514,7 +91600,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 3.0 + m_Text: --- !u!222 &162925820 CanvasRenderer: m_ObjectHideFlags: 0 @@ -91843,7 +91929,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &164624583 @@ -92055,7 +92141,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &164738145 @@ -92486,7 +92572,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &166386383 @@ -92521,7 +92607,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &166391996 @@ -92671,11 +92757,11 @@ RectTransform: m_Father: {fileID: 637564263} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &167156045 GameObject: m_ObjectHideFlags: 0 @@ -93018,9 +93104,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &168970113 GameObject: m_ObjectHideFlags: 0 @@ -93620,11 +93706,11 @@ RectTransform: m_Father: {fileID: 1107243629} m_RootOrder: 15 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &170059673 GameObject: m_ObjectHideFlags: 0 @@ -93657,7 +93743,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &170194480 @@ -94161,7 +94247,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &171047110 @@ -94515,7 +94601,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &171791859 @@ -94727,7 +94813,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 219.16669, y: 197.5} + m_AnchoredPosition: {x: 194.50002, y: -102.5} m_SizeDelta: {x: 49.333332, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &172758658 @@ -94875,7 +94961,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &173209208 @@ -95519,7 +95605,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &174746848 @@ -95912,7 +95998,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &175466277 @@ -96311,7 +96397,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &175981295 @@ -97165,7 +97251,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &178576125 @@ -97268,7 +97354,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &178787258 @@ -97525,7 +97611,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &179483484 @@ -98195,11 +98281,11 @@ RectTransform: m_Father: {fileID: 2057043785} m_RootOrder: 33 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &180945052 GameObject: m_ObjectHideFlags: 0 @@ -98522,7 +98608,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &181705602 @@ -98769,11 +98855,11 @@ RectTransform: m_Father: {fileID: 782651941} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &181882112 GameObject: m_ObjectHideFlags: 0 @@ -98797,7 +98883,7 @@ RectTransform: m_GameObject: {fileID: 181882112} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2037538262} - {fileID: 48783102} @@ -98809,9 +98895,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &182041899 GameObject: m_ObjectHideFlags: 0 @@ -99233,7 +99319,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &183475946 @@ -99519,7 +99605,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &184932092 @@ -99906,7 +99992,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &185987066 @@ -100158,7 +100244,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &186398422 @@ -100315,7 +100401,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_Color: {r: 0.625, g: 0.12408089, b: 0.12408089, a: 1} m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: @@ -101024,7 +101110,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &188705121 @@ -101094,7 +101180,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &188992852 @@ -101129,7 +101215,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &189301634 @@ -101525,9 +101611,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &190087397 GameObject: m_ObjectHideFlags: 0 @@ -101751,11 +101837,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &191046872 GameObject: m_ObjectHideFlags: 0 @@ -101891,7 +101977,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &191364309 @@ -102465,7 +102551,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &193879361 @@ -102574,7 +102660,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &194215301 @@ -103138,7 +103224,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &195654232 @@ -103232,7 +103318,7 @@ RectTransform: m_GameObject: {fileID: 195960578} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 300750676} - {fileID: 504284097} @@ -103249,9 +103335,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &196138702 GameObject: m_ObjectHideFlags: 0 @@ -103561,9 +103647,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &196802917 GameObject: m_ObjectHideFlags: 0 @@ -103880,7 +103966,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &197184325 @@ -104121,7 +104207,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -134, y: 26.366669} + m_AnchoredPosition: {x: -134, y: 26.366684} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &197718051 @@ -104572,7 +104658,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 105.12, y: 105.2} + m_AnchoredPosition: {x: 105.12, y: -232.8} m_SizeDelta: {x: 39.333332, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &198588202 @@ -105181,7 +105267,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &200326160 @@ -105216,7 +105302,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &200407550 @@ -105393,7 +105479,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &201007885 @@ -105673,7 +105759,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &202387706 @@ -105708,7 +105794,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &202387708 @@ -105783,7 +105869,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &202563974 @@ -105994,7 +106080,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &204331004 @@ -106063,7 +106149,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &204338766 @@ -106407,9 +106493,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &205454200 GameObject: m_ObjectHideFlags: 0 @@ -106586,7 +106672,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &206259590 @@ -106656,7 +106742,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &206791557 @@ -106758,7 +106844,7 @@ RectTransform: m_GameObject: {fileID: 207010309} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1995190298} m_Father: {fileID: 899774759} @@ -106908,7 +106994,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &207326804 @@ -107474,7 +107560,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &209150702 @@ -108040,7 +108126,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &210955719 @@ -108610,7 +108696,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &212008389 @@ -108710,17 +108796,17 @@ RectTransform: m_GameObject: {fileID: 212217748} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1472220859} m_Father: {fileID: 1986833636} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &212408925 GameObject: m_ObjectHideFlags: 0 @@ -108862,7 +108948,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 10.916687, y: -74.14286} + m_AnchoredPosition: {x: 10.916687, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &212988609 @@ -108900,9 +108986,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &213271277 GameObject: m_ObjectHideFlags: 0 @@ -109328,7 +109414,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &214519291 @@ -110248,7 +110334,7 @@ RectTransform: m_GameObject: {fileID: 217135560} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1894244041} - {fileID: 899837252} @@ -110260,9 +110346,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &217263923 GameObject: m_ObjectHideFlags: 0 @@ -110295,7 +110381,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &217737010 @@ -110508,9 +110594,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &218433526 GameObject: m_ObjectHideFlags: 0 @@ -110676,11 +110762,11 @@ RectTransform: m_Father: {fileID: 1368920484} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &218580666 GameObject: m_ObjectHideFlags: 0 @@ -111497,7 +111583,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &221035399 @@ -111567,7 +111653,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:09:10 + m_Text: 09:02:09 --- !u!222 &221035402 CanvasRenderer: m_ObjectHideFlags: 0 @@ -111918,9 +112004,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &223252523 GameObject: m_ObjectHideFlags: 0 @@ -112027,7 +112113,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &223345829 @@ -112063,7 +112149,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &223345831 @@ -112131,7 +112217,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &223510181 @@ -112275,7 +112361,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &223918540 @@ -112800,7 +112886,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &224946582 @@ -113535,7 +113621,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 0.6 + m_Text: 0.5 --- !u!222 &226202582 CanvasRenderer: m_ObjectHideFlags: 0 @@ -115779,7 +115865,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &231273679 @@ -115888,7 +115974,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &231513191 @@ -116989,7 +117075,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &234015561 @@ -117269,7 +117355,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 200.39746, y: 119.00001} + m_AnchoredPosition: {x: 200.39746, y: 119} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &235255791 @@ -117544,7 +117630,7 @@ RectTransform: m_GameObject: {fileID: 235976601} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1077053374} - {fileID: 1084567264} @@ -117556,9 +117642,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &236337873 GameObject: m_ObjectHideFlags: 0 @@ -117830,7 +117916,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 76.08453, y: 9.221359} + m_AnchoredPosition: {x: 62.139496, y: 331.377} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &237114022 @@ -117992,6 +118078,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -118976,7 +119230,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 247.83124, y: 32.899994} + m_AnchoredPosition: {x: 247.83124, y: 32.9} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &240114081 @@ -119118,7 +119372,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 42, y: 81.6} + m_AnchoredPosition: {x: 42, y: 81.600006} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &240272954 @@ -119192,7 +119446,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &240401367 @@ -119341,11 +119595,11 @@ RectTransform: m_Father: {fileID: 654135076} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &240671150 GameObject: m_ObjectHideFlags: 0 @@ -119591,7 +119845,7 @@ RectTransform: m_GameObject: {fileID: 240871430} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 247473897} - {fileID: 1192119768} @@ -119604,9 +119858,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &240876975 GameObject: m_ObjectHideFlags: 0 @@ -120141,7 +120395,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &242809490 @@ -120324,7 +120578,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &242871876 @@ -120713,7 +120967,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &243749874 @@ -120748,7 +121002,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &243782309 @@ -120851,7 +121105,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &243911687 @@ -120916,7 +121170,7 @@ RectTransform: m_GameObject: {fileID: 243920302} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1938237665} - {fileID: 909015394} @@ -120931,11 +121185,11 @@ RectTransform: m_Father: {fileID: 1128003316} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &243959982 GameObject: m_ObjectHideFlags: 0 @@ -121223,9 +121477,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -342} + m_AnchoredPosition: {x: 592, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &245361841 MonoBehaviour: m_ObjectHideFlags: 0 @@ -121247,6 +121501,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -123600,7 +123856,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &246228050 @@ -123954,7 +124210,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &246963050 @@ -124057,7 +124313,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &247115820 @@ -124269,7 +124525,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 42, y: 48.333336} + m_AnchoredPosition: {x: 42, y: 48.33333} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &247473898 @@ -124656,7 +124912,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &248476566 @@ -125819,7 +126075,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &251948434 @@ -126164,11 +126420,11 @@ RectTransform: m_Father: {fileID: 1865847025} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &252393582 GameObject: m_ObjectHideFlags: 0 @@ -126211,11 +126467,11 @@ RectTransform: m_Father: {fileID: 782651941} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &252409421 GameObject: m_ObjectHideFlags: 0 @@ -126410,6 +126666,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -126565,7 +126989,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &253191247 @@ -126600,7 +127024,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &253290149 @@ -126703,7 +127127,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &253665845 @@ -126773,7 +127197,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &253783887 @@ -127238,7 +127662,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &255113481 @@ -127273,7 +127697,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &255123062 @@ -128164,7 +128588,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &258227004 @@ -128303,11 +128727,11 @@ RectTransform: m_Father: {fileID: 1481638111} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &258624350 GameObject: m_ObjectHideFlags: 0 @@ -128759,7 +129183,7 @@ RectTransform: m_GameObject: {fileID: 259859243} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1573738054} - {fileID: 1272277700} @@ -128768,7 +129192,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &259899214 @@ -128804,7 +129228,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &259899216 @@ -128907,7 +129331,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:09:14 + m_Text: 09:02:19 --- !u!222 &260098078 CanvasRenderer: m_ObjectHideFlags: 0 @@ -129257,6 +129681,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: 0 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -132009,7 +132435,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &261456020 @@ -132398,7 +132824,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &262236696 @@ -132546,7 +132972,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &262367292 @@ -133186,7 +133612,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &264382296 @@ -134246,7 +134672,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &267778007 @@ -134428,9 +134854,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &268707889 GameObject: m_ObjectHideFlags: 0 @@ -134605,7 +135031,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -229.89761, y: -93.81284} + m_AnchoredPosition: {x: -229.89761, y: -93.812836} m_SizeDelta: {x: 54, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &269036022 @@ -134759,11 +135185,11 @@ RectTransform: m_Father: {fileID: 1000969945} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &269342946 GameObject: m_ObjectHideFlags: 0 @@ -135224,7 +135650,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &269847830 @@ -135976,7 +136402,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &271326688 @@ -137182,7 +137608,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &274405926 @@ -137359,7 +137785,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &274983935 @@ -138041,7 +138467,7 @@ RectTransform: m_GameObject: {fileID: 277435462} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1651094323} - {fileID: 1301473975} @@ -138053,9 +138479,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &277484412 GameObject: m_ObjectHideFlags: 0 @@ -138165,9 +138591,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &277879808 GameObject: m_ObjectHideFlags: 0 @@ -138485,7 +138911,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &279020497 @@ -138724,7 +139150,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 32.75, y: 74.42857} + m_AnchoredPosition: {x: 32.75, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &279261781 @@ -138827,7 +139253,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &279580321 @@ -141317,9 +141743,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &285426907 GameObject: m_ObjectHideFlags: 0 @@ -142167,7 +142593,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &287493268 @@ -142311,7 +142737,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &287650344 @@ -142665,7 +143091,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &289363220 @@ -142842,7 +143268,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &289826456 @@ -143093,7 +143519,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 21.656525, y: 95.884735} + m_AnchoredPosition: {x: 21.656525, y: 95.88474} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &290269993 @@ -143128,7 +143554,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &290269995 @@ -143270,7 +143696,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &290533500 @@ -143698,7 +144124,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &291500000 @@ -144091,7 +144517,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 22, y: 94.85714} + m_AnchoredPosition: {x: 22, y: 94.85715} m_SizeDelta: {x: 30, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &292197395 @@ -144234,7 +144660,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &292248746 @@ -144293,7 +144719,7 @@ RectTransform: m_GameObject: {fileID: 292392734} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1810014438} - {fileID: 1417152554} @@ -144305,9 +144731,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &292441474 GameObject: m_ObjectHideFlags: 0 @@ -145143,7 +145569,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &295502919 @@ -145562,11 +145988,11 @@ RectTransform: m_Father: {fileID: 1481638111} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &297077767 GameObject: m_ObjectHideFlags: 0 @@ -146128,7 +146554,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &298630182 @@ -146691,7 +147117,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 194.5, y: 160} + m_AnchoredPosition: {x: 194.5, y: -140} m_SizeDelta: {x: 34.666664, y: 35.333336} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &300535935 @@ -146865,7 +147291,7 @@ RectTransform: m_GameObject: {fileID: 300846357} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1782759463} - {fileID: 476530820} @@ -146874,7 +147300,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &300972850 @@ -146975,11 +147401,11 @@ RectTransform: m_Father: {fileID: 1520897807} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &301118017 GameObject: m_ObjectHideFlags: 0 @@ -147290,7 +147716,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &302039196 @@ -147325,7 +147751,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &302133686 @@ -147429,11 +147855,11 @@ RectTransform: m_Father: {fileID: 1520897807} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &302203813 GameObject: m_ObjectHideFlags: 0 @@ -147711,7 +148137,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &302673396 @@ -148302,7 +148728,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &305314838 @@ -148514,7 +148940,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &306271809 @@ -148954,7 +149380,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &307380545 @@ -149945,7 +150371,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &309501905 @@ -150368,7 +150794,7 @@ RectTransform: m_GameObject: {fileID: 310162700} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1865713273} - {fileID: 266399173} @@ -150380,9 +150806,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &310300408 GameObject: m_ObjectHideFlags: 0 @@ -151053,9 +151479,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &311953651 GameObject: m_ObjectHideFlags: 0 @@ -151197,7 +151623,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &312281243 @@ -151866,7 +152292,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &313344063 @@ -153244,7 +153670,7 @@ RectTransform: m_GameObject: {fileID: 318232557} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 845805911} - {fileID: 552304490} @@ -153357,7 +153783,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &318289518 @@ -153499,7 +153925,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &318470314 @@ -154135,9 +154561,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &320919621 GameObject: m_ObjectHideFlags: 0 @@ -154386,7 +154812,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &321642933 @@ -154447,7 +154873,7 @@ RectTransform: m_GameObject: {fileID: 321988225} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2055242460} - {fileID: 171047111} @@ -154459,9 +154885,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &322189239 GameObject: m_ObjectHideFlags: 0 @@ -154631,11 +155057,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &322880295 GameObject: m_ObjectHideFlags: 0 @@ -154953,9 +155379,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &323781374 GameObject: m_ObjectHideFlags: 0 @@ -154988,7 +155414,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &324123987 @@ -155554,7 +155980,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &325566349 @@ -155580,17 +156006,17 @@ RectTransform: m_GameObject: {fileID: 325566349} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1781635327} m_Father: {fileID: 1984264382} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &325628737 GameObject: m_ObjectHideFlags: 0 @@ -155624,7 +156050,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &325628739 @@ -155689,11 +156115,11 @@ RectTransform: m_Father: {fileID: 1640796314} m_RootOrder: 16 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &325668855 GameObject: m_ObjectHideFlags: 0 @@ -155948,7 +156374,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &326591542 @@ -156524,7 +156950,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &327924576 @@ -157446,11 +157872,11 @@ RectTransform: m_Father: {fileID: 575425244} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &331297087 GameObject: m_ObjectHideFlags: 0 @@ -157618,7 +158044,7 @@ RectTransform: m_GameObject: {fileID: 332427928} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1306570784} - {fileID: 360802221} @@ -157630,9 +158056,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &332429382 GameObject: m_ObjectHideFlags: 0 @@ -157739,7 +158165,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &332900444 @@ -157774,7 +158200,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &333218577 @@ -158425,7 +158851,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &335521283 @@ -158560,7 +158986,7 @@ RectTransform: m_GameObject: {fileID: 335808807} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1105035655} - {fileID: 306598903} @@ -158572,9 +158998,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &335824511 GameObject: m_ObjectHideFlags: 0 @@ -158681,7 +159107,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &336515604 @@ -159041,7 +159467,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &337567501 @@ -159905,7 +160331,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &339044067 @@ -161010,7 +161436,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 42, y: 81.6} + m_AnchoredPosition: {x: 42, y: 81.600006} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &342441400 @@ -161369,7 +161795,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &345093590 @@ -161983,7 +162409,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &346139137 @@ -162018,7 +162444,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 38.725403, y: 59.102844} + m_AnchoredPosition: {x: 38.725403, y: 59.10285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &346660809 @@ -163058,7 +163484,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &350050288 @@ -163519,7 +163945,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &351018056 @@ -163626,11 +164052,11 @@ RectTransform: m_Father: {fileID: 408536198} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &351291315 GameObject: m_ObjectHideFlags: 0 @@ -163663,7 +164089,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &351406750 @@ -165281,9 +165707,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &356186358 GameObject: m_ObjectHideFlags: 0 @@ -165316,7 +165742,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &356202220 @@ -165377,7 +165803,7 @@ RectTransform: m_GameObject: {fileID: 356472053} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1522410139} - {fileID: 288864004} @@ -165894,7 +166320,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &358077727 @@ -165932,9 +166358,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &358100236 GameObject: m_ObjectHideFlags: 0 @@ -166121,9 +166547,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -2128} + m_AnchoredPosition: {x: 592, y: -1828} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &358352447 MonoBehaviour: m_ObjectHideFlags: 0 @@ -166145,6 +166571,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -166582,8 +167010,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -167709,8 +168137,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -168836,8 +169264,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -171107,7 +171535,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 154, y: 66.23334} + m_AnchoredPosition: {x: 154, y: 66.23335} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &360383386 @@ -171320,7 +171748,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &360802222 @@ -171964,7 +172392,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &361658793 @@ -171999,7 +172427,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &361658795 @@ -172353,9 +172781,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -342} + m_AnchoredPosition: {x: 4, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &362412430 MonoBehaviour: m_ObjectHideFlags: 0 @@ -172377,6 +172805,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -173649,7 +174079,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &363472573 @@ -173723,7 +174153,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &364902346 @@ -173960,7 +174390,7 @@ RectTransform: m_GameObject: {fileID: 365352257} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 995843187} - {fileID: 1783123414} @@ -173969,7 +174399,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &365367833 @@ -174187,7 +174617,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &365927010 @@ -174568,7 +174998,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &367077069 @@ -174677,7 +175107,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 69.70999, y: -102.62401} + m_AnchoredPosition: {x: 69.70999, y: -102.62402} m_SizeDelta: {x: 72, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &367237728 @@ -175212,7 +175642,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &369653707 @@ -175360,7 +175790,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &370066838 @@ -175544,7 +175974,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &370232682 @@ -176007,7 +176437,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &371798678 @@ -176296,11 +176726,11 @@ RectTransform: m_Father: {fileID: 517131343} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &372248426 GameObject: m_ObjectHideFlags: 0 @@ -176685,7 +177115,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &373484615 @@ -177187,7 +177617,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &374741223 @@ -177445,7 +177875,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &375105939 @@ -177972,7 +178402,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &377358237 @@ -178974,7 +179404,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &380399981 @@ -179009,7 +179439,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &380446533 @@ -179045,11 +179475,11 @@ RectTransform: m_Father: {fileID: 728372040} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &380491614 GameObject: m_ObjectHideFlags: 0 @@ -179474,11 +179904,11 @@ RectTransform: m_Father: {fileID: 449267886} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &382765179 GameObject: m_ObjectHideFlags: 0 @@ -180046,7 +180476,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -206, y: -32.300003} + m_AnchoredPosition: {x: -206, y: -32.299988} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &383951540 @@ -180081,7 +180511,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &384342814 @@ -180394,7 +180824,10 @@ RectTransform: m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 0, y: 0, z: 0} - m_Children: [] + m_Children: + - {fileID: 1674745765} + - {fileID: 1783622131} + - {fileID: 1682926797} m_Father: {fileID: 1481638111} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -180470,7 +180903,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &385567315 @@ -180647,7 +181080,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -89.46999, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &386217624 @@ -180907,9 +181340,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &387067231 GameObject: m_ObjectHideFlags: 0 @@ -181143,7 +181576,7 @@ RectTransform: m_GameObject: {fileID: 387337075} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 439418342} - {fileID: 890099201} @@ -181152,9 +181585,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &387425470 GameObject: m_ObjectHideFlags: 0 @@ -181617,7 +182050,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &389288367 @@ -181692,7 +182125,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &389395230 @@ -181760,7 +182193,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &389667952 @@ -182194,7 +182627,7 @@ RectTransform: m_GameObject: {fileID: 390477291} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 170901771} - {fileID: 1903129669} @@ -182238,7 +182671,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -34.087708, y: -26.57705} + m_AnchoredPosition: {x: -34.087708, y: -26.577057} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &390586552 @@ -183168,7 +183601,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &393282090 @@ -183204,11 +183637,11 @@ RectTransform: m_Father: {fileID: 517131343} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &393754601 GameObject: m_ObjectHideFlags: 0 @@ -183350,7 +183783,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &394528205 @@ -183533,7 +183966,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &394885440 @@ -184563,7 +184996,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &396974105 @@ -184699,7 +185132,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &397656168 @@ -185015,7 +185448,7 @@ RectTransform: m_GameObject: {fileID: 398030528} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 2115295720} - {fileID: 1689034844} @@ -185024,7 +185457,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &398172910 @@ -185417,7 +185850,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &399265601 @@ -185777,7 +186210,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &400379218 @@ -185880,7 +186313,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &400694567 @@ -185983,7 +186416,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &401123031 @@ -186343,11 +186776,11 @@ RectTransform: m_Father: {fileID: 245361840} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &402132923 GameObject: m_ObjectHideFlags: 0 @@ -186455,7 +186888,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &402350983 @@ -186775,7 +187208,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &403519845 @@ -187079,7 +187512,7 @@ RectTransform: m_GameObject: {fileID: 404047052} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 87068265} m_RootOrder: 1 @@ -187794,7 +188227,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &406169793 @@ -187829,7 +188262,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &406276687 @@ -188129,11 +188562,11 @@ RectTransform: m_Father: {fileID: 1867673941} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &407060520 GameObject: m_ObjectHideFlags: 0 @@ -188201,7 +188634,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &407244468 @@ -188697,7 +189130,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &408501641 @@ -188733,11 +189166,11 @@ RectTransform: m_Father: {fileID: 1865847025} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &408534567 GameObject: m_ObjectHideFlags: 0 @@ -188854,9 +189287,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1520} + m_AnchoredPosition: {x: 4, y: -1220} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &408536199 MonoBehaviour: m_ObjectHideFlags: 0 @@ -188878,6 +189311,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -189315,8 +189750,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -190442,8 +190877,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -191904,7 +192339,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &409679102 @@ -192684,7 +193119,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &411471102 @@ -193796,7 +194231,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &413298173 @@ -193938,9 +194373,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &413627714 GameObject: m_ObjectHideFlags: 0 @@ -193973,7 +194408,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &413827793 @@ -194043,7 +194478,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &414031044 @@ -194745,7 +195180,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &415880582 @@ -195208,7 +195643,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &416849390 @@ -195589,7 +196024,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &417591985 @@ -196114,7 +196549,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &419317364 @@ -196291,7 +196726,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &419633804 @@ -196326,7 +196761,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &419633806 @@ -197118,7 +197553,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &420917260 @@ -197252,9 +197687,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &421921584 GameObject: m_ObjectHideFlags: 0 @@ -197435,7 +197870,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &422319712 @@ -198456,7 +198891,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &425143638 @@ -198482,7 +198917,7 @@ RectTransform: m_GameObject: {fileID: 425143638} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 879390220} - {fileID: 1861774614} @@ -198492,11 +198927,11 @@ RectTransform: m_Father: {fileID: 1696158610} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &425484544 GameObject: m_ObjectHideFlags: 0 @@ -199171,7 +199606,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &426818148 @@ -199211,9 +199646,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 395, y: -302} + m_AnchoredPosition: {x: 395, y: -2} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &426818150 MonoBehaviour: m_ObjectHideFlags: 0 @@ -199235,6 +199670,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -200429,7 +200866,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -141.91666, y: 74.42857} + m_AnchoredPosition: {x: -141.91666, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &426876013 @@ -200851,7 +201288,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 185.58334, y: -74.14286} + m_AnchoredPosition: {x: 185.58334, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &428014463 @@ -201304,7 +201741,7 @@ RectTransform: m_GameObject: {fileID: 429215257} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 775734112} - {fileID: 2028745404} @@ -201312,11 +201749,11 @@ RectTransform: m_Father: {fileID: 1160070519} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &429323097 GameObject: m_ObjectHideFlags: 0 @@ -202215,11 +202652,11 @@ RectTransform: m_Father: {fileID: 472702066} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &431363210 GameObject: m_ObjectHideFlags: 0 @@ -202320,7 +202757,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &431829116 @@ -202458,7 +202895,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &432179208 @@ -202715,7 +203152,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &432655420 @@ -202789,7 +203226,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &433336330 @@ -202824,7 +203261,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &433337035 @@ -203003,7 +203440,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &434856688 @@ -203039,7 +203476,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &434856690 @@ -203216,7 +203653,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &435468970 @@ -203459,11 +203896,11 @@ RectTransform: m_Father: {fileID: 1867673941} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &435802296 GameObject: m_ObjectHideFlags: 0 @@ -204617,7 +205054,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &438814646 @@ -204678,7 +205115,7 @@ RectTransform: m_GameObject: {fileID: 439206672} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 940594595} - {fileID: 168970114} @@ -204690,9 +205127,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &439402836 GameObject: m_ObjectHideFlags: 0 @@ -204725,7 +205162,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &439418341 @@ -204760,7 +205197,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &439418343 @@ -204834,7 +205271,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &439573998 @@ -205297,7 +205734,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 177, y: 196.90416} + m_AnchoredPosition: {x: 189.5, y: -102.5} m_SizeDelta: {x: 40, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &440762688 @@ -205795,7 +206232,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &441946792 @@ -206413,6 +206850,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 443817684} +--- !u!1 &443834713 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 443834714} + - component: {fileID: 443834716} + - component: {fileID: 443834715} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &443834714 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 443834713} + 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: + - {fileID: 728153128} + m_Father: {fileID: 1783622131} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 22, y: 0} + m_SizeDelta: {x: 56.666668, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &443834715 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 443834713} + 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, g: 0, b: 0, a: 0} + 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 &443834716 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 443834713} --- !u!1 &443840606 GameObject: m_ObjectHideFlags: 0 @@ -206519,7 +207025,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &444499607 @@ -206628,7 +207134,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &444948390 @@ -207218,7 +207724,7 @@ RectTransform: m_GameObject: {fileID: 446382522} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1650327263} - {fileID: 1688827756} @@ -207230,9 +207736,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &446491426 GameObject: m_ObjectHideFlags: 0 @@ -207262,11 +207768,11 @@ RectTransform: m_Father: {fileID: 1296083102} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &446568618 GameObject: m_ObjectHideFlags: 0 @@ -207521,7 +208027,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &447373136 @@ -207704,7 +208210,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &447551669 @@ -207953,6 +208459,80 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &448018558 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 448018559} + - component: {fileID: 448018561} + - component: {fileID: 448018560} + m_Layer: 0 + m_Name: axis_x5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &448018559 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 448018558} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1698887230} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 908.88007, y: -325} + m_SizeDelta: {x: 156.16, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &448018560 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 448018558} + 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.31764707, g: 0.3019608, b: 0.3019608, 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: 18 + 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: 09:02:09 +--- !u!222 &448018561 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 448018558} --- !u!1 &448072254 GameObject: m_ObjectHideFlags: 0 @@ -208475,7 +209055,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &449132772 @@ -208513,9 +209093,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &449176292 GameObject: m_ObjectHideFlags: 0 @@ -208777,9 +209357,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 590, y: -312} + m_AnchoredPosition: {x: 590, y: -2} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &449267887 MonoBehaviour: m_ObjectHideFlags: 0 @@ -208801,6 +209381,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 310 + m_ChartX: 0 + m_ChartY: -310 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -221985,6 +222567,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -222053,8 +222803,8 @@ MonoBehaviour: m_SelectOnRight: {fileID: 0} m_Transition: 1 m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 @@ -222719,7 +223469,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &451867760 @@ -223381,6 +224131,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -223606,7 +224524,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &454394868 @@ -223641,7 +224559,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &454648862 @@ -223676,7 +224594,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &454845981 @@ -223879,7 +224797,7 @@ RectTransform: m_GameObject: {fileID: 455771157} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1222338492} - {fileID: 2119003036} @@ -223908,11 +224826,11 @@ RectTransform: m_Father: {fileID: 137406608} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &456186922 GameObject: m_ObjectHideFlags: 0 @@ -224020,7 +224938,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &456553160 @@ -224514,7 +225432,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &457796466 @@ -224549,7 +225467,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &458151777 @@ -225257,7 +226175,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &460309404 @@ -225292,7 +226210,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &460785674 @@ -225318,7 +226236,7 @@ RectTransform: m_GameObject: {fileID: 460785674} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 502927719} - {fileID: 1644112674} @@ -225330,9 +226248,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &460950299 GameObject: m_ObjectHideFlags: 0 @@ -225365,7 +226283,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &461090054 @@ -226574,7 +227492,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &463244098 @@ -226751,7 +227669,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &463373500 @@ -227176,9 +228094,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &464273791 GameObject: m_ObjectHideFlags: 0 @@ -227456,7 +228374,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &465221196 @@ -227530,7 +228448,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &465405942 @@ -227949,7 +228867,7 @@ RectTransform: m_GameObject: {fileID: 466183671} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 5222690} m_Father: {fileID: 1011349446} @@ -227957,9 +228875,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &466354474 GameObject: m_ObjectHideFlags: 0 @@ -228392,7 +229310,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &467348562 @@ -228486,7 +229404,7 @@ RectTransform: m_GameObject: {fileID: 467529184} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 833593226} - {fileID: 661764025} @@ -228494,11 +229412,11 @@ RectTransform: m_Father: {fileID: 1179388655} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &467699603 GameObject: m_ObjectHideFlags: 0 @@ -228605,7 +229523,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &467828249 @@ -228857,7 +229775,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &468002535 @@ -229036,7 +229954,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &468541899 @@ -229281,7 +230199,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &468863443 @@ -229631,7 +230549,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 22, y: 0} - m_SizeDelta: {x: 62.13592, y: 13.087378} + m_SizeDelta: {x: 64, y: 14} m_Pivot: {x: 0, y: 0.5} --- !u!114 &470198501 MonoBehaviour: @@ -229810,9 +230728,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &471060060 GameObject: m_ObjectHideFlags: 0 @@ -230492,9 +231410,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 590, y: -342} + m_AnchoredPosition: {x: 590, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &472702067 MonoBehaviour: m_ObjectHideFlags: 0 @@ -230527,6 +231445,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -230984,8 +231904,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 0 - m_CurrDetailProgress: 100.4 - m_DestDetailProgress: 503.6 + m_CurrDetailProgress: 200.4 + m_DestDetailProgress: 603.6 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -232533,11 +233453,11 @@ RectTransform: m_Father: {fileID: 449267886} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &474061706 GameObject: m_ObjectHideFlags: 0 @@ -232718,7 +233638,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &474480940 @@ -233181,7 +234101,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 212.1, y: -20.300003} + m_AnchoredPosition: {x: 212.1, y: -20.299988} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &475400831 @@ -233361,11 +234281,11 @@ RectTransform: m_Father: {fileID: 124833369} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &476082805 GameObject: m_ObjectHideFlags: 0 @@ -233900,7 +234820,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &476899196 @@ -234175,7 +235095,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &477355251 @@ -234210,7 +235130,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &477399894 @@ -234421,7 +235341,7 @@ RectTransform: m_GameObject: {fileID: 477887790} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 613442712} m_Father: {fileID: 1584742783} @@ -234497,7 +235417,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &478135511 @@ -234604,11 +235524,11 @@ RectTransform: m_Father: {fileID: 637564263} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &478191473 GameObject: m_ObjectHideFlags: 0 @@ -234641,7 +235561,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &478256410 @@ -234964,7 +235884,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &479505549 @@ -235330,7 +236250,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &481198427 @@ -236112,7 +237032,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &482434468 @@ -236473,7 +237393,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &483459838 @@ -236689,7 +237609,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &483858518 @@ -236754,7 +237674,7 @@ RectTransform: m_GameObject: {fileID: 484306326} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2143351212} - {fileID: 948440025} @@ -236766,9 +237686,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &484353554 GameObject: m_ObjectHideFlags: 0 @@ -236875,7 +237795,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: -106.8} + m_AnchoredPosition: {x: 0, y: -106.79999} m_SizeDelta: {x: 27.333334, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &484836157 @@ -237085,7 +238005,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &485333463 @@ -237155,7 +238075,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &486013517 @@ -237332,7 +238252,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &486715163 @@ -237509,7 +238429,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &487093455 @@ -237976,7 +238896,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &487800965 @@ -238418,11 +239338,11 @@ RectTransform: m_Father: {fileID: 408536198} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &488613418 GameObject: m_ObjectHideFlags: 0 @@ -238530,7 +239450,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &488657191 @@ -239326,7 +240246,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &490839836 @@ -239886,7 +240806,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &492305042 @@ -239990,11 +240910,11 @@ RectTransform: m_Father: {fileID: 930446419} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &492802267 GameObject: m_ObjectHideFlags: 0 @@ -240563,7 +241483,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &493999153 @@ -240814,7 +241734,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &494809809 @@ -241139,7 +242059,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &495665920 @@ -241322,7 +242242,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &497250827 @@ -241461,7 +242381,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &497478017 @@ -241786,7 +242706,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &498744819 @@ -242426,7 +243346,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &499777047 @@ -242535,7 +243455,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 10, y: -89.96667} + m_AnchoredPosition: {x: 10, y: -89.96666} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &499857204 @@ -242570,7 +243490,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &500195867 @@ -243031,7 +243951,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &500707009 @@ -243141,14 +244061,15 @@ RectTransform: - {fileID: 1319204723} - {fileID: 690874380} - {fileID: 1866472705} + - {fileID: 1322003210} m_Father: {fileID: 1481638111} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &501379725 GameObject: m_ObjectHideFlags: 0 @@ -243923,7 +244844,7 @@ RectTransform: m_GameObject: {fileID: 503419440} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 66562869} - {fileID: 2008330779} @@ -243932,9 +244853,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &503545046 GameObject: m_ObjectHideFlags: 0 @@ -244109,7 +245030,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &503853223 @@ -244928,7 +245849,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &506948584 @@ -244998,7 +245919,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &507265765 @@ -245323,7 +246244,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &508654489 @@ -245429,11 +246350,11 @@ RectTransform: m_Father: {fileID: 782651941} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &509134451 GameObject: m_ObjectHideFlags: 0 @@ -245723,11 +246644,11 @@ RectTransform: m_Father: {fileID: 689547914} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &510012145 GameObject: m_ObjectHideFlags: 0 @@ -245751,7 +246672,7 @@ RectTransform: m_GameObject: {fileID: 510012145} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 630120331} - {fileID: 1195683372} @@ -245763,9 +246684,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &510539509 GameObject: m_ObjectHideFlags: 0 @@ -245798,7 +246719,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &510549830 @@ -245839,11 +246760,11 @@ RectTransform: m_Father: {fileID: 1693045525} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &510724818 GameObject: m_ObjectHideFlags: 0 @@ -245942,11 +246863,11 @@ RectTransform: m_Father: {fileID: 1923450786} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &510789864 GameObject: m_ObjectHideFlags: 0 @@ -246274,7 +247195,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 84.135925, y: 13.087378} + m_SizeDelta: {x: 86, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &511132881 MonoBehaviour: @@ -246507,7 +247428,7 @@ RectTransform: m_GameObject: {fileID: 511433113} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 575086071} m_RootOrder: 1 @@ -246827,7 +247748,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &514305652 @@ -246862,7 +247783,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &514386663 @@ -247327,7 +248248,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &515283472 @@ -247607,7 +248528,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 229.25, y: -74.14286} + m_AnchoredPosition: {x: 229.25, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &516560931 @@ -247642,7 +248563,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &516605740 @@ -247955,7 +248876,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &517020719 @@ -248068,9 +248989,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -304} + m_AnchoredPosition: {x: 4, y: -4} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &517131344 MonoBehaviour: m_ObjectHideFlags: 0 @@ -248092,6 +249013,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -248528,8 +249451,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -250065,7 +250988,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &517379999 @@ -250481,7 +251404,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &519630833 @@ -250941,7 +251864,7 @@ RectTransform: m_GameObject: {fileID: 520816980} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 286161687} - {fileID: 1483629686} @@ -251126,7 +252049,7 @@ RectTransform: m_GameObject: {fileID: 521276472} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1986833636} m_RootOrder: 1 @@ -252240,7 +253163,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &524359715 @@ -253049,7 +253972,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &525742115 @@ -254052,7 +254975,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &529989133 @@ -254451,7 +255374,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &530393591 @@ -254920,7 +255843,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &531425609 @@ -255389,7 +256312,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &532259301 @@ -255924,7 +256847,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &534095400 @@ -256072,7 +256995,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &534257400 @@ -256109,7 +257032,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 22, y: 0} - m_SizeDelta: {x: 62.13592, y: 13.087378} + m_SizeDelta: {x: 64, y: 14} m_Pivot: {x: 0, y: 0.5} --- !u!114 &534257402 MonoBehaviour: @@ -256176,7 +257099,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &534932113 @@ -256318,7 +257241,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &535404013 @@ -256713,7 +257636,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &536808716 @@ -256875,7 +257798,7 @@ RectTransform: m_GameObject: {fileID: 537384860} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 418472676} - {fileID: 1289236465} @@ -256884,7 +257807,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &537694809 @@ -257419,7 +258342,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &539395283 @@ -258090,7 +259013,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &541000018 @@ -258730,7 +259653,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &543302010 @@ -258765,7 +259688,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &543379887 @@ -258826,7 +259749,7 @@ RectTransform: m_GameObject: {fileID: 543807418} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1497830479} - {fileID: 826265963} @@ -258835,9 +259758,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &544069993 GameObject: m_ObjectHideFlags: 0 @@ -258880,9 +259803,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -2128} + m_AnchoredPosition: {x: 592, y: -1828} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &544069995 MonoBehaviour: m_ObjectHideFlags: 0 @@ -258904,6 +259827,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -261787,7 +262712,7 @@ RectTransform: m_GameObject: {fileID: 545736920} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 544069994} m_RootOrder: 1 @@ -261864,7 +262789,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:10:58 + m_Text: 09:03:59 --- !u!222 &546165252 CanvasRenderer: m_ObjectHideFlags: 0 @@ -262119,7 +263044,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &548384496 @@ -262189,7 +263114,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &548566957 @@ -262366,7 +263291,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &548661710 @@ -262698,7 +263623,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &549403547 @@ -263426,7 +264351,7 @@ RectTransform: m_GameObject: {fileID: 551121080} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1155478134} - {fileID: 2118314724} @@ -263435,7 +264360,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &551220587 @@ -264630,7 +265555,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 112.30002, y: -45.325676} + m_AnchoredPosition: {x: 112.30002, y: -45.325684} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &552579720 @@ -264665,7 +265590,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &552635517 @@ -264700,7 +265625,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &552875217 @@ -264809,7 +265734,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &553588913 @@ -264953,7 +265878,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &554551441 @@ -265200,7 +266125,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &555346835 @@ -265383,7 +266308,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &555697849 @@ -265418,7 +266343,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &555697851 @@ -265714,7 +266639,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &556957087 @@ -266393,7 +267318,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &559107883 @@ -266751,11 +267676,11 @@ RectTransform: m_Father: {fileID: 627765467} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &560649423 GameObject: m_ObjectHideFlags: 0 @@ -266788,7 +267713,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &560687080 @@ -266968,7 +267893,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &561102403 @@ -267146,11 +268071,11 @@ RectTransform: m_Father: {fileID: 782651941} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &561432593 GameObject: m_ObjectHideFlags: 0 @@ -267621,7 +268546,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &562186459 @@ -267656,7 +268581,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &562268188 @@ -267691,7 +268616,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &562268190 @@ -267765,7 +268690,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &562557416 @@ -267907,7 +268832,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &562859459 @@ -267981,7 +268906,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &563476358 @@ -268751,7 +269676,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &564636827 @@ -269068,11 +269993,11 @@ RectTransform: m_Father: {fileID: 472702066} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &565435878 GameObject: m_ObjectHideFlags: 0 @@ -269253,7 +270178,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &565826119 @@ -270070,7 +270995,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &567668539 @@ -270105,7 +271030,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &567717963 @@ -270573,7 +271498,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &569418677 @@ -270928,7 +271853,7 @@ RectTransform: m_GameObject: {fileID: 570254896} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1429943195} - {fileID: 405124289} @@ -270973,7 +271898,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &570291604 @@ -271177,7 +272102,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &570690338 @@ -271212,7 +272137,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &570807778 @@ -271459,7 +272384,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &571106268 @@ -271568,7 +272493,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &571449193 @@ -271677,7 +272602,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &572570155 @@ -273443,9 +274368,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -608} + m_AnchoredPosition: {x: 592, y: -308} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &575086072 MonoBehaviour: m_ObjectHideFlags: 0 @@ -273467,6 +274392,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -275372,7 +276299,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:09:08 + m_Text: 09:02:04 --- !u!222 &575198899 CanvasRenderer: m_ObjectHideFlags: 0 @@ -275421,9 +276348,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -684} + m_AnchoredPosition: {x: 592, y: -346} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &575425245 MonoBehaviour: m_ObjectHideFlags: 0 @@ -275445,6 +276372,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -308323,9 +309252,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &576114450 GameObject: m_ObjectHideFlags: 0 @@ -308393,7 +309322,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &576587770 @@ -308428,7 +309357,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &576633698 @@ -308714,7 +309643,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &577564334 @@ -309065,7 +309994,7 @@ RectTransform: m_GameObject: {fileID: 578564902} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1952480051} - {fileID: 62055310} @@ -309074,9 +310003,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &578768548 GameObject: m_ObjectHideFlags: 0 @@ -310681,7 +311610,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &582510299 @@ -310707,7 +311636,7 @@ RectTransform: m_GameObject: {fileID: 582510299} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1277256674} - {fileID: 759594455} @@ -310715,11 +311644,11 @@ RectTransform: m_Father: {fileID: 898747249} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &582768676 GameObject: m_ObjectHideFlags: 0 @@ -311110,11 +312039,11 @@ RectTransform: m_Father: {fileID: 1107243629} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &583924473 GameObject: m_ObjectHideFlags: 0 @@ -311146,9 +312075,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &584228324 GameObject: m_ObjectHideFlags: 0 @@ -311397,7 +312326,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &584763733 @@ -311937,9 +312866,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -340} + m_AnchoredPosition: {x: 2, y: -2} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &585854008 MonoBehaviour: m_ObjectHideFlags: 0 @@ -311974,6 +312903,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 1173.12 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -312116,7 +313047,7 @@ MonoBehaviour: m_JsonData: m_DataFromJson: 0 m_Show: 1 - m_Text: "30\u6570\u636E" + m_Text: "40\u6570\u636E" m_TextStyle: m_JsonData: m_DataFromJson: 0 @@ -312554,7 +313485,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -312673,7 +313604,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -312792,7 +313723,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -312911,7 +313842,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313030,7 +313961,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313149,7 +314080,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313268,7 +314199,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313387,7 +314318,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313506,7 +314437,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313625,7 +314556,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313744,7 +314675,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313863,7 +314794,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -313982,7 +314913,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314101,7 +315032,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314220,7 +315151,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314339,7 +315270,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314458,7 +315389,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314577,7 +315508,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314696,7 +315627,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314815,7 +315746,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -314934,7 +315865,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315053,7 +315984,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315172,7 +316103,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315291,7 +316222,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315410,7 +316341,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315529,7 +316460,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315648,7 +316579,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315767,7 +316698,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -315886,7 +316817,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -316005,7 +316936,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -316085,6 +317016,1196 @@ MonoBehaviour: m_Data: - 29 - 16 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 30 + - 16.030077 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 31 + - 16.05984 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 32 + - 16.089277 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 33 + - 16.118385 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 34 + - 16.147152 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 35 + - 16.175571 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 36 + - 16.20363 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 37 + - 16.231323 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 38 + - 16.25864 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 39 + - 16.285576 m_Settings: m_JsonData: m_DataFromJson: 0 @@ -316123,36 +318244,46 @@ MonoBehaviour: m_CeilRate: 0 m_Inverse: 0 m_Data: - - 02:10:48 - - 02:10:49 - - 02:10:50 - - 02:10:51 - - 02:10:52 - - 02:10:53 - - 02:10:54 - - 02:10:55 - - 02:10:56 - - 02:10:57 - - 02:10:58 - - 02:10:59 - - 02:11:00 - - 02:11:01 - - 02:11:02 - - 02:11:03 - - 02:11:04 - - 02:11:05 - - 02:11:06 - - 02:11:07 - - 02:11:08 - - 02:11:09 - - 02:11:10 - - 02:11:11 - - 02:11:12 - - 02:11:13 - - 02:11:14 - - 02:11:15 - - 02:11:16 - - 02:11:17 + - 09:03:44 + - 09:03:45 + - 09:03:46 + - 09:03:47 + - 09:03:48 + - 09:03:49 + - 09:03:50 + - 09:03:51 + - 09:03:52 + - 09:03:53 + - 09:03:54 + - 09:03:55 + - 09:03:56 + - 09:03:57 + - 09:03:58 + - 09:03:59 + - 09:04:00 + - 09:04:01 + - 09:04:02 + - 09:04:03 + - 09:04:04 + - 09:04:05 + - 09:04:06 + - 09:04:07 + - 09:04:08 + - 09:04:09 + - 09:04:10 + - 09:04:11 + - 09:04:12 + - 09:04:13 + - 09:04:14 + - 09:04:15 + - 09:04:16 + - 09:04:17 + - 09:04:18 + - 09:04:19 + - 09:04:20 + - 09:04:21 + - 09:04:22 + - 09:04:23 m_AxisLine: m_JsonData: m_DataFromJson: 0 @@ -316591,7 +318722,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &585995306 @@ -316626,7 +318757,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &586512938 @@ -316859,11 +318990,11 @@ RectTransform: m_Father: {fileID: 1150011278} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &586659082 GameObject: m_ObjectHideFlags: 0 @@ -317044,7 +319175,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &586834137 @@ -317188,7 +319319,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &588316920 @@ -317214,7 +319345,7 @@ RectTransform: m_GameObject: {fileID: 588316920} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1188347422} - {fileID: 1507076007} @@ -317259,7 +319390,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &588396802 @@ -318084,7 +320215,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &590522085 @@ -318119,7 +320250,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &590804123 @@ -318358,7 +320489,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &592012389 @@ -319286,7 +321417,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &594063899 @@ -319389,7 +321520,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -60.765015, y: 77.26901} + m_AnchoredPosition: {x: -60.765015, y: 77.26902} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &594226271 @@ -319494,7 +321625,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 109.73151, y: 90.04639} + m_AnchoredPosition: {x: 109.73151, y: 90.04637} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &595017467 @@ -320218,7 +322349,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &597291533 @@ -320328,11 +322459,11 @@ RectTransform: m_Father: {fileID: 575425244} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &597612027 GameObject: m_ObjectHideFlags: 0 @@ -320474,7 +322605,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &597943268 @@ -320722,7 +322853,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &598607046 @@ -321389,7 +323520,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &600412533 @@ -321500,11 +323631,11 @@ RectTransform: m_Father: {fileID: 1078410190} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &600574492 GameObject: m_ObjectHideFlags: 0 @@ -321608,9 +323739,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &601263776 GameObject: m_ObjectHideFlags: 0 @@ -322414,7 +324545,7 @@ RectTransform: m_GameObject: {fileID: 602736106} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2019826935} - {fileID: 1901860468} @@ -322423,9 +324554,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &602769753 GameObject: m_ObjectHideFlags: 0 @@ -322606,7 +324737,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &603130162 @@ -322669,11 +324800,11 @@ RectTransform: m_Father: {fileID: 245361840} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &603236871 GameObject: m_ObjectHideFlags: 0 @@ -323058,7 +325189,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &603839632 @@ -323161,7 +325292,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &604166317 @@ -323435,7 +325566,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &605078169 @@ -323761,7 +325892,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &605310819 @@ -323903,7 +326034,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &605509718 @@ -324975,7 +327106,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &608194986 @@ -325226,7 +327357,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &609035527 @@ -325261,7 +327392,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &609420230 @@ -326443,14 +328574,14 @@ RectTransform: m_GameObject: {fileID: 612418793} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1401881374} 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: 42, y: 223.5} + m_AnchoredPosition: {x: 142, y: 323.5} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &612418795 @@ -326485,7 +328616,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 0.9 + m_Text: --- !u!222 &612418796 CanvasRenderer: m_ObjectHideFlags: 0 @@ -327372,7 +329503,7 @@ RectTransform: m_GameObject: {fileID: 614557500} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 579079829} m_Father: {fileID: 1910345652} @@ -327841,7 +329972,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &617549568 @@ -328281,7 +330412,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &619271109 @@ -328307,17 +330438,17 @@ RectTransform: m_GameObject: {fileID: 619271109} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1725158479} m_Father: {fileID: 898747249} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &619428163 GameObject: m_ObjectHideFlags: 0 @@ -328527,7 +330658,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &619755775 @@ -329002,7 +331133,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &620806017 @@ -329607,7 +331738,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &621785497 @@ -329752,7 +331883,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -310} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &622539091 @@ -330104,7 +332235,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &623035340 @@ -331160,9 +333291,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 395, y: -910} + m_AnchoredPosition: {x: 395, y: -610} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &625650503 MonoBehaviour: m_ObjectHideFlags: 0 @@ -331184,6 +333315,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -332862,9 +334995,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -912} + m_AnchoredPosition: {x: 592, y: -612} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &627765468 MonoBehaviour: m_ObjectHideFlags: 0 @@ -332886,6 +335019,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -336174,7 +338309,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &628389179 @@ -336244,7 +338379,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &628757499 @@ -336421,7 +338556,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &628878370 @@ -336779,7 +338914,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &629888992 @@ -337682,7 +339817,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &631185267 @@ -338613,7 +340748,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &634028869 @@ -338648,7 +340783,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &634117052 @@ -339115,7 +341250,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &635754408 @@ -339515,9 +341650,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 395, y: -606} + m_AnchoredPosition: {x: 395, y: -306} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &637564264 MonoBehaviour: m_ObjectHideFlags: 0 @@ -339539,6 +341674,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -343053,7 +345190,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &639928797 @@ -344143,7 +346280,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &642561980 @@ -344178,7 +346315,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &643037850 @@ -344605,11 +346742,11 @@ RectTransform: m_Father: {fileID: 1910686491} m_RootOrder: 16 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &644231491 GameObject: m_ObjectHideFlags: 0 @@ -344643,7 +346780,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &644231493 @@ -345073,7 +347210,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &645729945 @@ -345147,7 +347284,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &646028450 @@ -345182,7 +347319,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &646028452 @@ -345826,7 +347963,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &648068897 @@ -346594,7 +348731,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -120.62401, y: 59.249985} + m_AnchoredPosition: {x: -120.62401, y: 59.249992} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &648783499 @@ -347362,7 +349499,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &651501092 @@ -348174,16 +350311,16 @@ RectTransform: m_GameObject: {fileID: 653499128} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1128003316} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &653499334 GameObject: m_ObjectHideFlags: 0 @@ -348216,7 +350353,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &653510390 @@ -348325,7 +350462,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -54.58333, y: -74.14286} + m_AnchoredPosition: {x: -54.58333, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &653945284 @@ -348444,9 +350581,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -608} + m_AnchoredPosition: {x: 592, y: -308} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &654135077 MonoBehaviour: m_ObjectHideFlags: 0 @@ -348468,6 +350605,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -348903,8 +351042,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 50 - m_DestDetailProgress: 554 + m_CurrDetailProgress: 150 + m_DestDetailProgress: 654 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -350030,8 +352169,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 50 - m_DestDetailProgress: 554 + m_CurrDetailProgress: 150 + m_DestDetailProgress: 654 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -351674,9 +353813,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &654560275 GameObject: m_ObjectHideFlags: 0 @@ -351783,7 +353922,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &654698308 @@ -351853,7 +353992,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &655233856 @@ -352803,11 +354942,11 @@ RectTransform: m_Father: {fileID: 689547914} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &657679451 GameObject: m_ObjectHideFlags: 0 @@ -352841,11 +354980,11 @@ RectTransform: m_Father: {fileID: 728372040} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &657970982 GameObject: m_ObjectHideFlags: 0 @@ -353658,7 +355797,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &659668590 @@ -354160,7 +356299,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 92, y: 85.333336} + m_AnchoredPosition: {x: 92, y: 85.33333} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &661139984 @@ -354582,7 +356721,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &661968818 @@ -355802,7 +357941,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &664426239 @@ -356711,7 +358850,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 112.30002, y: 65.02432} + m_AnchoredPosition: {x: 112.30002, y: 65.02433} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &666637950 @@ -357065,7 +359204,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &667553252 @@ -357174,7 +359313,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &667686578 @@ -357741,11 +359880,11 @@ RectTransform: m_Father: {fileID: 472702066} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &668544754 GameObject: m_ObjectHideFlags: 0 @@ -358165,7 +360304,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &669669974 @@ -358413,9 +360552,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &670648061 GameObject: m_ObjectHideFlags: 0 @@ -358448,7 +360587,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &670696433 @@ -358858,7 +360997,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &671304406 @@ -359080,7 +361219,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &672199289 @@ -359115,7 +361254,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &672221559 @@ -359856,7 +361995,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &673623078 @@ -359891,7 +362030,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &674011844 @@ -359917,7 +362056,7 @@ RectTransform: m_GameObject: {fileID: 674011844} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1925213841} - {fileID: 2103025730} @@ -359926,9 +362065,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &674136504 GameObject: m_ObjectHideFlags: 0 @@ -360177,7 +362316,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &674448613 @@ -360857,11 +362996,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &676847497 GameObject: m_ObjectHideFlags: 0 @@ -361042,7 +363181,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &677332531 @@ -361077,7 +363216,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &677342861 @@ -361501,7 +363640,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &678630299 @@ -361601,7 +363740,7 @@ RectTransform: m_GameObject: {fileID: 678687758} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1713824133} - {fileID: 761734140} @@ -361613,9 +363752,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &678722388 GameObject: m_ObjectHideFlags: 0 @@ -361784,7 +363923,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &678954633 @@ -361961,7 +364100,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &679564728 @@ -362779,7 +364918,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 12.5, y: 27.674774} + m_AnchoredPosition: {x: 12.5, y: 27.674797} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &682714924 @@ -363538,9 +365677,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &684755771 GameObject: m_ObjectHideFlags: 0 @@ -363573,7 +365712,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &684892774 @@ -363718,7 +365857,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &685182492 @@ -364043,7 +366182,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &687388660 @@ -364226,7 +366365,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &688350009 @@ -364264,9 +366403,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &688359303 GameObject: m_ObjectHideFlags: 0 @@ -364447,9 +366586,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 788, y: -606} + m_AnchoredPosition: {x: 788, y: -306} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &689547915 MonoBehaviour: m_ObjectHideFlags: 0 @@ -364471,6 +366610,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -366229,7 +368370,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &690804787 @@ -367077,7 +369218,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &692731585 @@ -367286,7 +369427,7 @@ RectTransform: m_GameObject: {fileID: 693318826} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1635452290} m_RootOrder: 1 @@ -367402,7 +369543,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &693746958 @@ -367511,7 +369652,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &693979644 @@ -367620,7 +369761,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &694070589 @@ -367729,7 +369870,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &694285921 @@ -368163,7 +370304,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &694786471 @@ -369756,7 +371897,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &700069310 @@ -370114,7 +372255,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &701031940 @@ -370140,7 +372281,7 @@ RectTransform: m_GameObject: {fileID: 701031940} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 503375104} - {fileID: 2120419971} @@ -370149,7 +372290,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &701154838 @@ -371599,7 +373740,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &705275819 @@ -372107,7 +374248,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: "20\u6570\u636E" + m_Text: "30\u6570\u636E" --- !u!222 &706570431 CanvasRenderer: m_ObjectHideFlags: 0 @@ -372545,7 +374686,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &707129291 @@ -372648,7 +374789,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &707380305 @@ -372972,11 +375113,11 @@ RectTransform: m_Father: {fileID: 2070144964} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &708165262 GameObject: m_ObjectHideFlags: 0 @@ -373077,7 +375218,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &708885229 @@ -373425,7 +375566,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &709816024 @@ -373639,7 +375780,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &710268107 @@ -373674,7 +375815,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &710340048 @@ -373709,11 +375850,11 @@ RectTransform: m_Father: {fileID: 33516770} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &710496538 GameObject: m_ObjectHideFlags: 0 @@ -373856,7 +375997,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -310} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &710735258 @@ -374649,7 +376790,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &713396690 @@ -375185,7 +377326,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &715101261 @@ -375907,11 +378048,11 @@ RectTransform: m_Father: {fileID: 1865847025} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &717303926 GameObject: m_ObjectHideFlags: 0 @@ -376667,9 +378808,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &719893413 GameObject: m_ObjectHideFlags: 0 @@ -376844,7 +378985,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &720237911 @@ -377638,7 +379779,7 @@ RectTransform: m_GameObject: {fileID: 722100099} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 970589502} - {fileID: 2043136638} @@ -377649,9 +379790,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &722110809 GameObject: m_ObjectHideFlags: 0 @@ -378042,7 +380183,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &723091721 @@ -378550,7 +380691,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &723865891 @@ -379148,7 +381289,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &725136155 @@ -379353,7 +381494,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &726066976 @@ -379604,7 +381745,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &726244939 @@ -380546,6 +382687,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -380669,6 +382978,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 728093143} +--- !u!1 &728153127 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 728153128} + - component: {fileID: 728153130} + - component: {fileID: 728153129} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &728153128 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 728153127} + 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: 443834714} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 56.666668, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &728153129 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 728153127} + 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.31764707, g: 0.3019608, b: 0.3019608, 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "2\u7684\u6307\u6570" +--- !u!222 &728153130 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 728153127} --- !u!1 &728272765 GameObject: m_ObjectHideFlags: 0 @@ -380701,7 +383084,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 80.619995} + m_AnchoredPosition: {x: 0, y: 390.62} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &728303587 @@ -380814,9 +383197,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -342} + m_AnchoredPosition: {x: 4, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &728372041 MonoBehaviour: m_ObjectHideFlags: 0 @@ -380838,6 +383221,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -383738,9 +386123,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &730358091 GameObject: m_ObjectHideFlags: 0 @@ -384059,7 +386444,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &730888332 @@ -384197,7 +386582,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &731306871 @@ -384409,7 +386794,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &731596106 @@ -384557,7 +386942,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 112.533966, y: -45.30001} + m_AnchoredPosition: {x: 112.533966, y: -45.300003} m_SizeDelta: {x: 46.666668, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &731950525 @@ -384828,14 +387213,14 @@ RectTransform: m_GameObject: {fileID: 732428606} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1401881374} 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: 42, y: 288} + m_AnchoredPosition: {x: 142, y: 388} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &732428608 @@ -384870,7 +387255,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 1.2 + m_Text: --- !u!222 &732428609 CanvasRenderer: m_ObjectHideFlags: 0 @@ -384909,7 +387294,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &732512056 @@ -385018,7 +387403,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &732995848 @@ -385516,7 +387901,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &734609925 @@ -385802,7 +388187,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &735988687 @@ -385975,9 +388360,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &736210388 GameObject: m_ObjectHideFlags: 0 @@ -386193,7 +388578,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &736662057 @@ -386660,7 +389045,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 142.09146, y: 99.547104} + m_AnchoredPosition: {x: 110.85738, y: -216.11421} m_SizeDelta: {x: 44.666668, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &737814461 @@ -386834,7 +389219,7 @@ RectTransform: m_GameObject: {fileID: 738253706} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1839574798} - {fileID: 2093854541} @@ -387340,7 +389725,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &740095432 @@ -388013,7 +390398,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -120.62401, y: -59.249992} + m_AnchoredPosition: {x: -120.62401, y: -59.249985} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &742009665 @@ -389892,7 +392277,7 @@ RectTransform: m_GameObject: {fileID: 746181587} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1355184670} - {fileID: 1992496919} @@ -389901,7 +392286,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &746862335 @@ -390183,11 +392568,11 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &747599634 GameObject: m_ObjectHideFlags: 0 @@ -390288,7 +392673,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &747927867 @@ -390613,7 +392998,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &748802420 @@ -390991,7 +393376,7 @@ RectTransform: m_GameObject: {fileID: 749605163} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1725372955} - {fileID: 905164780} @@ -391129,7 +393514,7 @@ RectTransform: m_GameObject: {fileID: 749804154} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1061458188} - {fileID: 854494986} @@ -391138,7 +393523,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &749929283 @@ -391247,7 +393632,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &750573257 @@ -391793,7 +394178,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &752025872 @@ -391964,7 +394349,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &752878309 @@ -392221,7 +394606,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &753707260 @@ -392605,17 +394990,17 @@ RectTransform: m_GameObject: {fileID: 754098773} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1430926154} m_Father: {fileID: 1011349446} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &754143316 GameObject: m_ObjectHideFlags: 0 @@ -392862,11 +395247,11 @@ RectTransform: m_Father: {fileID: 1737585331} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &754447152 GameObject: m_ObjectHideFlags: 0 @@ -393405,7 +395790,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 157.88828, y: -49.055656} + m_AnchoredPosition: {x: 157.88828, y: -49.05565} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &756011630 @@ -393582,7 +395967,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &756144709 @@ -393656,7 +396041,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -34.087708, y: -26.57705} + m_AnchoredPosition: {x: -34.087708, y: -26.577042} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &756623368 @@ -393901,7 +396286,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &757584212 @@ -394152,7 +396537,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &758138809 @@ -394290,7 +396675,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &758383909 @@ -394780,7 +397165,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &759636583 @@ -394989,7 +397374,7 @@ RectTransform: m_GameObject: {fileID: 759808057} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1132992329} - {fileID: 1572318886} @@ -395543,7 +397928,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &761734141 @@ -395720,7 +398105,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 177, y: 222.11102} + m_AnchoredPosition: {x: 189.5, y: -77.5} m_SizeDelta: {x: 40, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &762144592 @@ -395862,7 +398247,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &762650550 @@ -396111,11 +398496,11 @@ RectTransform: m_Father: {fileID: 124833369} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &763127856 GameObject: m_ObjectHideFlags: 0 @@ -396358,7 +398743,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &763735820 @@ -396609,7 +398994,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 120.20004, y: 77.853836} + m_AnchoredPosition: {x: 120.20004, y: 77.85384} m_SizeDelta: {x: 38, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &764130261 @@ -396683,7 +399068,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -183.29427, y: -76.363594} + m_AnchoredPosition: {x: -183.29427, y: -76.36359} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &764182832 @@ -396866,7 +399251,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &764484000 @@ -397111,7 +399496,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:10:50 + m_Text: 09:03:47 --- !u!222 &764792207 CanvasRenderer: m_ObjectHideFlags: 0 @@ -397286,7 +399671,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &765409626 @@ -397932,7 +400317,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &767266341 @@ -398036,7 +400421,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &767436740 @@ -398108,9 +400493,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &767678097 GameObject: m_ObjectHideFlags: 0 @@ -398291,7 +400676,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &768434562 @@ -398366,9 +400751,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &768545460 GameObject: m_ObjectHideFlags: 0 @@ -398402,7 +400787,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &768545462 @@ -399660,7 +402045,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &773146133 @@ -399946,7 +402331,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &773920771 @@ -399981,7 +402366,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &774013102 @@ -400341,7 +402726,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &775068541 @@ -400666,7 +403051,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &775734113 @@ -400884,7 +403269,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &776561045 @@ -400993,7 +403378,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &776895338 @@ -401176,7 +403561,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 93.84619, y: 51.5} + m_AnchoredPosition: {x: 93.84619, y: 51.499992} m_SizeDelta: {x: 38, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &777057779 @@ -401383,7 +403768,7 @@ RectTransform: m_GameObject: {fileID: 777597548} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 476899197} - {fileID: 1884344434} @@ -401392,7 +403777,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &777906429 @@ -401427,7 +403812,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &777906431 @@ -401643,7 +404028,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &778537737 @@ -402040,7 +404425,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &780211313 @@ -402075,7 +404460,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &780230530 @@ -402647,7 +405032,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &781664555 @@ -402682,7 +405067,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &781719603 @@ -403002,7 +405387,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &782634230 @@ -403148,9 +405533,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -304} + m_AnchoredPosition: {x: 592, y: -4} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &782651942 MonoBehaviour: m_ObjectHideFlags: 0 @@ -403172,6 +405557,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -403608,8 +405995,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -405642,7 +408029,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &783791772 @@ -405819,7 +408206,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &784778749 @@ -406347,7 +408734,7 @@ RectTransform: m_GameObject: {fileID: 786122819} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 937217221} m_RootOrder: 1 @@ -407062,7 +409449,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &787942017 @@ -407097,7 +409484,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &787942019 @@ -407638,7 +410025,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &789522203 @@ -407741,7 +410128,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &789700101 @@ -408488,7 +410875,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 141.91669, y: 74.42857} + m_AnchoredPosition: {x: 141.91669, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &791156442 @@ -409159,7 +411546,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &793203284 @@ -409484,7 +411871,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &794255806 @@ -409663,7 +412050,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &794421974 @@ -409700,7 +412087,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 22, y: 0} - m_SizeDelta: {x: 62.13592, y: 13.087378} + m_SizeDelta: {x: 64, y: 14} m_Pivot: {x: 0, y: 0.5} --- !u!114 &794421976 MonoBehaviour: @@ -410588,7 +412975,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &796740874 @@ -410944,7 +413331,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &797408713 @@ -411445,11 +413832,11 @@ RectTransform: m_Father: {fileID: 963730291} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &798927199 GameObject: m_ObjectHideFlags: 0 @@ -411488,11 +413875,11 @@ RectTransform: m_Father: {fileID: 728372040} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &799095860 GameObject: m_ObjectHideFlags: 0 @@ -411599,7 +413986,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 153.4502, y: -127.226234} + m_AnchoredPosition: {x: 153.4502, y: -127.22623} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &799163853 @@ -411702,7 +414089,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &799270923 @@ -411947,7 +414334,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &800892342 @@ -412217,11 +414604,11 @@ RectTransform: m_Father: {fileID: 33516770} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &801978234 GameObject: m_ObjectHideFlags: 0 @@ -412396,7 +414783,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &802150653 @@ -413110,9 +415497,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &804179573 GameObject: m_ObjectHideFlags: 0 @@ -413254,7 +415641,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &804634913 @@ -414106,7 +416493,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 72, y: 117.225} + m_AnchoredPosition: {x: 72, y: 117.225006} m_SizeDelta: {x: 80, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &807732931 @@ -414319,11 +416706,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &808108433 GameObject: m_ObjectHideFlags: 0 @@ -414356,7 +416743,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &808108435 @@ -414681,7 +417068,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &808704589 @@ -414926,7 +417313,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &809584990 @@ -415070,7 +417457,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &809971170 @@ -415857,11 +418244,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &812173396 GameObject: m_ObjectHideFlags: 0 @@ -416287,7 +418674,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &813279312 @@ -416322,7 +418709,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &813639662 @@ -416422,7 +418809,7 @@ RectTransform: m_GameObject: {fileID: 813698067} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 694997172} - {fileID: 1936534006} @@ -416431,7 +418818,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &813744533 @@ -416540,7 +418927,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &813949680 @@ -416978,7 +419365,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &814846605 @@ -417013,7 +419400,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &814983705 @@ -417157,7 +419544,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &815481611 @@ -417399,7 +419786,7 @@ RectTransform: m_GameObject: {fileID: 816178892} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 698075165} - {fileID: 1330310254} @@ -417408,7 +419795,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &816407489 @@ -417655,7 +420042,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &816586236 @@ -417730,7 +420117,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &817024597 @@ -417866,9 +420253,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &817888617 GameObject: m_ObjectHideFlags: 0 @@ -418081,11 +420468,11 @@ RectTransform: m_Father: {fileID: 1580042357} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &818299060 GameObject: m_ObjectHideFlags: 0 @@ -418118,7 +420505,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &818434394 @@ -418496,7 +420883,7 @@ RectTransform: m_GameObject: {fileID: 819296534} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1434401589} - {fileID: 676935489} @@ -419217,7 +421604,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 119.20001} + m_AnchoredPosition: {x: 0, y: 119.2} m_SizeDelta: {x: 31.333334, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &820594317 @@ -419326,7 +421713,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &820995238 @@ -420171,16 +422558,16 @@ RectTransform: m_GameObject: {fileID: 823715743} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 544069994} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &823834787 GameObject: m_ObjectHideFlags: 0 @@ -421020,7 +423407,7 @@ RectTransform: m_GameObject: {fileID: 825136065} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1182951462} - {fileID: 1588842011} @@ -421029,7 +423416,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &825281057 @@ -421342,7 +423729,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &826265964 @@ -421737,7 +424124,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &827702820 @@ -421955,7 +424342,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &828663663 @@ -422138,7 +424525,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &829943492 @@ -422164,7 +424551,7 @@ RectTransform: m_GameObject: {fileID: 829943492} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 290269994} - {fileID: 124410244} @@ -422173,9 +424560,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &830098292 GameObject: m_ObjectHideFlags: 0 @@ -422276,7 +424663,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &830590270 @@ -422595,7 +424982,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &831060492 @@ -422704,7 +425091,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &831798777 @@ -422774,7 +425161,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 118.09656, y: -123.90829} + m_AnchoredPosition: {x: 118.09656, y: -123.908295} m_SizeDelta: {x: 78.666664, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &831937386 @@ -422913,17 +425300,17 @@ RectTransform: m_GameObject: {fileID: 832062164} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 325725528} m_Father: {fileID: 1304904922} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &832120590 GameObject: m_ObjectHideFlags: 0 @@ -423104,7 +425491,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &832394164 @@ -423361,7 +425748,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &833319703 @@ -423499,7 +425886,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &833759274 @@ -423604,7 +425991,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:1... + m_Text: 09:0... --- !u!222 &834253690 CanvasRenderer: m_ObjectHideFlags: 0 @@ -424017,7 +426404,7 @@ RectTransform: m_GameObject: {fileID: 836173494} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 607972792} m_Father: {fileID: 1910345652} @@ -424093,7 +426480,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &836226033 @@ -424846,7 +427233,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &838271839 @@ -424881,7 +427268,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &838452525 @@ -424975,7 +427362,7 @@ RectTransform: m_GameObject: {fileID: 838584021} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1498336190} - {fileID: 1351254283} @@ -424989,9 +427376,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &838586844 GameObject: m_ObjectHideFlags: 0 @@ -425739,9 +428126,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &840271784 GameObject: m_ObjectHideFlags: 0 @@ -425984,7 +428371,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &840542183 @@ -426270,7 +428657,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &841024190 @@ -426305,7 +428692,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &841181174 @@ -426340,7 +428727,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &841539044 @@ -426620,7 +429007,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &842536508 @@ -426832,7 +429219,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &843062679 @@ -427911,9 +430298,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &845579747 GameObject: m_ObjectHideFlags: 0 @@ -428339,7 +430726,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &846639619 @@ -428621,7 +431008,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &846920304 @@ -428942,7 +431329,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &847878302 @@ -428978,7 +431365,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &847878304 @@ -429194,7 +431581,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &848450093 @@ -429410,7 +431797,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &848781418 @@ -430768,7 +433155,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &851683731 @@ -430803,7 +433190,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &851683733 @@ -431519,7 +433906,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &853530425 @@ -431554,7 +433941,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &853530427 @@ -431841,7 +434228,7 @@ RectTransform: m_GameObject: {fileID: 854631538} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1757530112} - {fileID: 211178888} @@ -431885,7 +434272,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &854745208 @@ -432107,7 +434494,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &855354098 @@ -432210,7 +434597,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &855605993 @@ -432263,6 +434650,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -432492,7 +435047,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &856579059 @@ -432601,7 +435156,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &856735372 @@ -432852,7 +435407,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &857259585 @@ -432887,7 +435442,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &857318117 @@ -433506,7 +436061,7 @@ RectTransform: m_GameObject: {fileID: 859305296} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 895073409} m_Father: {fileID: 1179388655} @@ -433514,9 +436069,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &859358884 GameObject: m_ObjectHideFlags: 0 @@ -433766,7 +436321,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &860252069 @@ -433949,7 +436504,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &860429940 @@ -434315,7 +436870,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &860966076 @@ -434779,7 +437334,7 @@ RectTransform: m_GameObject: {fileID: 861840125} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 457199044} - {fileID: 290818738} @@ -434791,9 +437346,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &861860720 GameObject: m_ObjectHideFlags: 0 @@ -434900,7 +437455,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -141.91666, y: -74.14286} + m_AnchoredPosition: {x: -141.91666, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &862072357 @@ -435470,7 +438025,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &863359372 @@ -435721,7 +438276,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &864275343 @@ -435747,17 +438302,17 @@ RectTransform: m_GameObject: {fileID: 864275343} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1786120246} m_Father: {fileID: 1474375333} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &864315238 GameObject: m_ObjectHideFlags: 0 @@ -435938,7 +438493,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &864693422 @@ -436257,7 +438812,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &866045555 @@ -436292,7 +438847,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &866281858 @@ -436749,7 +439304,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:09:12 + m_Text: 09:02:14 --- !u!222 &866780687 CanvasRenderer: m_ObjectHideFlags: 0 @@ -437148,7 +439703,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &867578869 @@ -437257,7 +439812,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &868178551 @@ -437640,7 +440195,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &868891368 @@ -438392,7 +440947,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -310} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &870148266 @@ -439280,7 +441835,7 @@ RectTransform: m_GameObject: {fileID: 871422436} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1386854160} - {fileID: 2057792364} @@ -439289,7 +441844,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &871696514 @@ -439977,9 +442532,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &873237238 GameObject: m_ObjectHideFlags: 0 @@ -440512,11 +443067,11 @@ RectTransform: m_Father: {fileID: 1910686491} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &874588476 GameObject: m_ObjectHideFlags: 0 @@ -440550,7 +443105,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 62.13592, y: 17.087378} + m_SizeDelta: {x: 64, y: 18} m_Pivot: {x: 0, y: 0.5} --- !u!114 &874588478 MonoBehaviour: @@ -441652,7 +444207,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &877113093 @@ -441897,7 +444452,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &877859524 @@ -442257,7 +444812,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &878573953 @@ -442543,7 +445098,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &879408415 @@ -443381,7 +445936,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &881507402 @@ -443490,7 +446045,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &881614279 @@ -443525,7 +446080,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &881637564 @@ -443663,7 +446218,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 120.834015, y: -59.250008} + m_AnchoredPosition: {x: 120.834015, y: -59.25} m_SizeDelta: {x: 72, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &881760596 @@ -444092,9 +446647,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &883008252 GameObject: m_ObjectHideFlags: 0 @@ -444127,7 +446682,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &883067954 @@ -444343,9 +446898,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1520} + m_AnchoredPosition: {x: 592, y: -1220} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &883296609 MonoBehaviour: m_ObjectHideFlags: 0 @@ -444367,6 +446922,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -445755,9 +448312,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &883614010 GameObject: m_ObjectHideFlags: 0 @@ -446183,7 +448740,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &885240253 @@ -446218,7 +448775,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &885299573 @@ -446327,7 +448884,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &885482967 @@ -447321,7 +449878,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:09:20 + m_Text: 09:02:30 --- !u!222 &887357683 CanvasRenderer: m_ObjectHideFlags: 0 @@ -447656,7 +450213,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &887766393 @@ -447691,7 +450248,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &887798343 @@ -447942,7 +450499,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &888490529 @@ -448086,7 +450643,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &888950958 @@ -448718,7 +451275,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &890099202 @@ -449112,7 +451669,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &890696818 @@ -449533,7 +452090,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &892430526 @@ -450142,7 +452699,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &893576162 @@ -450177,7 +452734,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &894011654 @@ -450560,7 +453117,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &895073410 @@ -451198,7 +453755,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &896242483 @@ -451307,7 +453864,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &896259670 @@ -451381,7 +453938,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &896669396 @@ -451519,7 +454076,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &896970427 @@ -451622,7 +454179,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &897013010 @@ -451657,7 +454214,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &897013012 @@ -451902,7 +454459,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &898498366 @@ -452273,9 +454830,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 395, y: -302} + m_AnchoredPosition: {x: 395, y: -2} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &898747250 MonoBehaviour: m_ObjectHideFlags: 0 @@ -452297,6 +454854,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -453877,11 +456436,11 @@ RectTransform: m_Father: {fileID: 1150011278} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &899784757 GameObject: m_ObjectHideFlags: 0 @@ -454587,7 +457146,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &902397295 @@ -454784,7 +457343,7 @@ RectTransform: m_GameObject: {fileID: 903305849} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 2144436054} m_Father: {fileID: 1304904922} @@ -454792,9 +457351,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &903407952 GameObject: m_ObjectHideFlags: 0 @@ -455259,7 +457818,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &904488519 @@ -455407,7 +457966,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &904696621 @@ -455442,7 +458001,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &905056424 @@ -455796,7 +458355,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &905875567 @@ -456008,7 +458567,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &906727074 @@ -456117,7 +458676,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -56.49794, y: -93.26271} + m_AnchoredPosition: {x: -49.21025, y: 248.99591} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &906820835 @@ -456329,7 +458888,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &907752096 @@ -456355,7 +458914,7 @@ RectTransform: m_GameObject: {fileID: 907752096} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1847072102} - {fileID: 1874321073} @@ -456364,7 +458923,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &908036572 @@ -456544,11 +459103,11 @@ RectTransform: m_Father: {fileID: 111780571} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &908522327 GameObject: m_ObjectHideFlags: 0 @@ -456581,9 +459140,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &908567168 GameObject: m_ObjectHideFlags: 0 @@ -456684,7 +459243,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &908596945 @@ -457253,11 +459812,11 @@ RectTransform: m_Father: {fileID: 627765467} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &910233285 GameObject: m_ObjectHideFlags: 0 @@ -458156,7 +460715,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &912663849 @@ -458266,7 +460825,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &912726695 @@ -458568,7 +461127,7 @@ RectTransform: m_GameObject: {fileID: 913854805} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 938052012} - {fileID: 2044908403} @@ -458577,7 +461136,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &913882541 @@ -458973,9 +461532,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &914644414 GameObject: m_ObjectHideFlags: 0 @@ -459389,7 +461948,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &915348880 @@ -459646,7 +462205,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &916025953 @@ -459749,7 +462308,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 56.839996, y: 102.62402} + m_AnchoredPosition: {x: 56.839996, y: 102.62401} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &916094507 @@ -460567,7 +463126,7 @@ RectTransform: m_GameObject: {fileID: 918119106} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2100880280} - {fileID: 751222594} @@ -460579,9 +463138,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &918443305 GameObject: m_ObjectHideFlags: 0 @@ -460614,7 +463173,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &918454703 @@ -461513,7 +464072,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &920521646 @@ -461764,7 +464323,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &920901724 @@ -461902,7 +464461,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &921312749 @@ -463072,7 +465631,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &923966985 @@ -463922,7 +466481,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &925486926 @@ -463954,11 +466513,11 @@ RectTransform: m_Father: {fileID: 1910686491} m_RootOrder: 17 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &925520597 GameObject: m_ObjectHideFlags: 0 @@ -464275,7 +466834,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &926192707 @@ -464511,9 +467070,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 590, y: -940} + m_AnchoredPosition: {x: 590, y: -630} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &926932801 MonoBehaviour: m_ObjectHideFlags: 0 @@ -464535,6 +467094,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 310 + m_ChartX: 0 + m_ChartY: -310 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -465613,11 +468174,11 @@ RectTransform: m_Father: {fileID: 111780571} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &927132393 GameObject: m_ObjectHideFlags: 0 @@ -465723,9 +468284,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &927530146 GameObject: m_ObjectHideFlags: 0 @@ -465935,7 +468496,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &928216911 @@ -466289,7 +468850,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &928786901 @@ -466753,9 +469314,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &930412648 GameObject: m_ObjectHideFlags: 0 @@ -466866,9 +469427,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -912} + m_AnchoredPosition: {x: 4, y: -612} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &930446420 MonoBehaviour: m_ObjectHideFlags: 0 @@ -466890,6 +469451,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -467325,8 +469888,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -468452,8 +471015,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -469579,8 +472142,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -471009,9 +473572,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &930573039 GameObject: m_ObjectHideFlags: 0 @@ -471392,7 +473955,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &932271414 @@ -471575,7 +474138,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &932542290 @@ -471787,7 +474350,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &932931520 @@ -471929,7 +474492,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &933745084 @@ -472033,7 +474596,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &933837771 @@ -472710,11 +475273,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &936242088 GameObject: m_ObjectHideFlags: 0 @@ -472747,7 +475310,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -114.664, y: -59.249992} + m_AnchoredPosition: {x: -114.664, y: -59.249985} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &936242090 @@ -473225,9 +475788,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1216} + m_AnchoredPosition: {x: 4, y: -916} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &937217222 MonoBehaviour: m_ObjectHideFlags: 0 @@ -473249,6 +475812,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -476461,7 +479026,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &937804763 @@ -476768,7 +479333,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &938443889 @@ -477821,7 +480386,7 @@ RectTransform: m_GameObject: {fileID: 941185511} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 259899215} m_Father: {fileID: 898747249} @@ -477829,9 +480394,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &941341769 GameObject: m_ObjectHideFlags: 0 @@ -477865,7 +480430,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &941341771 @@ -477933,7 +480498,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -187.1, y: 23.809341} + m_AnchoredPosition: {x: -187.1, y: 23.80935} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &942424486 @@ -478368,7 +480933,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &943476583 @@ -478436,7 +481001,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &943658257 @@ -479544,6 +482109,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -479612,8 +482345,8 @@ MonoBehaviour: m_SelectOnRight: {fileID: 0} m_Transition: 1 m_Colors: - m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 @@ -479959,9 +482692,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &946708822 GameObject: m_ObjectHideFlags: 0 @@ -480196,7 +482929,7 @@ RectTransform: m_GameObject: {fileID: 946998063} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 361658794} - {fileID: 897013011} @@ -480205,9 +482938,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &947029902 GameObject: m_ObjectHideFlags: 0 @@ -480318,9 +483051,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -304} + m_AnchoredPosition: {x: 592, y: -4} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &947224713 MonoBehaviour: m_ObjectHideFlags: 0 @@ -480342,6 +483075,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -483608,7 +486343,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &948440024 @@ -483933,7 +486668,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &948816411 @@ -485149,7 +487884,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 138.62402, y: -59.250008} + m_AnchoredPosition: {x: 138.62402, y: -59.25} m_SizeDelta: {x: 72, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &953096503 @@ -485297,7 +488032,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &953666093 @@ -485332,7 +488067,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &953804296 @@ -486080,7 +488815,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &955683972 @@ -486224,7 +488959,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &956256036 @@ -486259,7 +488994,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &956283407 @@ -486650,11 +489385,11 @@ RectTransform: m_Father: {fileID: 1368920484} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &957773641 GameObject: m_ObjectHideFlags: 0 @@ -487155,7 +489890,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 62.13592, y: 17.087378} + m_SizeDelta: {x: 64, y: 18} m_Pivot: {x: 0, y: 0.5} --- !u!114 &959495715 MonoBehaviour: @@ -487660,7 +490395,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &960287154 @@ -487945,7 +490680,7 @@ RectTransform: m_GameObject: {fileID: 960655654} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 279635274} m_Father: {fileID: 1956011523} @@ -488204,7 +490939,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &962150213 @@ -488379,7 +491114,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &962995778 @@ -488633,7 +491368,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &963538058 @@ -488706,9 +491441,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 788, y: -910} + m_AnchoredPosition: {x: 788, y: -610} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &963730292 MonoBehaviour: m_ObjectHideFlags: 0 @@ -488730,6 +491465,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -490025,7 +492762,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &964380165 @@ -490913,7 +493650,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &966659796 @@ -491343,7 +494080,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &968398319 @@ -491455,9 +494192,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &968870040 GameObject: m_ObjectHideFlags: 0 @@ -491525,7 +494262,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &969116168 @@ -492488,7 +495225,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &970589501 @@ -492524,7 +495261,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &970589503 @@ -492733,7 +495470,7 @@ RectTransform: m_GameObject: {fileID: 971130909} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1196635666} m_Father: {fileID: 1956011523} @@ -492809,7 +495546,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 200.39746, y: 119.00001} + m_AnchoredPosition: {x: 200.39746, y: 119} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &971214311 @@ -493720,7 +496457,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &973548030 @@ -494045,7 +496782,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &973940543 @@ -494656,7 +497393,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &975527259 @@ -494833,7 +497570,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &976331539 @@ -495140,7 +497877,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &977222576 @@ -495467,7 +498204,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 200.39746, y: 119.00001} + m_AnchoredPosition: {x: 200.39746, y: 119} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &978143397 @@ -495996,7 +498733,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: -0.6 + m_Text: -1.0 --- !u!222 &979441297 CanvasRenderer: m_ObjectHideFlags: 0 @@ -496103,7 +498840,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &979871344 @@ -496177,7 +498914,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &980095347 @@ -496247,7 +498984,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &981331742 @@ -496282,7 +499019,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &982008054 @@ -496677,7 +499414,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &983081318 @@ -496820,7 +499557,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &983715773 @@ -497385,7 +500122,7 @@ RectTransform: m_GameObject: {fileID: 985040751} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1327487261} - {fileID: 1536157394} @@ -497902,7 +500639,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &986660359 @@ -498222,7 +500959,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &986943875 @@ -498291,7 +501028,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &986961458 @@ -498394,9 +501131,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &987247036 GameObject: m_ObjectHideFlags: 0 @@ -498696,9 +501433,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -342} + m_AnchoredPosition: {x: 4, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &988304554 MonoBehaviour: m_ObjectHideFlags: 0 @@ -498720,6 +501457,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -610965,7 +613704,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 10, y: -61.63333} + m_AnchoredPosition: {x: 10, y: -61.633316} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &988843239 @@ -611000,7 +613739,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &988857829 @@ -611040,9 +613779,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &988878004 GameObject: m_ObjectHideFlags: 0 @@ -611075,7 +613814,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &988937793 @@ -611964,7 +614703,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &991782245 @@ -612067,9 +614806,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &991873288 GameObject: m_ObjectHideFlags: 0 @@ -612325,11 +615064,11 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &992638302 GameObject: m_ObjectHideFlags: 0 @@ -612397,7 +615136,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &992676711 @@ -613195,7 +615934,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &994626924 @@ -613407,7 +616146,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &995478925 @@ -614096,7 +616835,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &997158503 @@ -615162,7 +617901,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &999760137 @@ -615270,11 +618009,11 @@ RectTransform: m_Father: {fileID: 1580042357} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1000020430 GameObject: m_ObjectHideFlags: 0 @@ -615856,9 +618595,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 590, y: -682} + m_AnchoredPosition: {x: 590, y: -344} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1000969946 MonoBehaviour: m_ObjectHideFlags: 0 @@ -615880,6 +618619,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -617247,7 +619988,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1001899727 @@ -617273,7 +620014,7 @@ RectTransform: m_GameObject: {fileID: 1001899727} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1847674991} - {fileID: 774013103} @@ -617282,7 +620023,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1002241100 @@ -617562,7 +620303,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1003430109 @@ -618631,7 +621372,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1006329598 @@ -618950,7 +621691,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1007410026 @@ -619237,7 +621978,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1007861761 @@ -619858,11 +622599,11 @@ RectTransform: m_Father: {fileID: 1835109743} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1009341592 GameObject: m_ObjectHideFlags: 0 @@ -620293,9 +623034,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -606} + m_AnchoredPosition: {x: 2, y: -306} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1011349447 MonoBehaviour: m_ObjectHideFlags: 0 @@ -620317,6 +623058,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -621261,7 +624004,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1012909553 @@ -621474,7 +624217,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -310} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1013202008 @@ -621687,7 +624430,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1013712971 @@ -621932,7 +624675,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 483.60254, y: 118.99999} + m_AnchoredPosition: {x: 483.60254, y: 119} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1014462887 @@ -622109,7 +624852,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -49.42354, y: -126.45723} + m_AnchoredPosition: {x: -49.42354, y: -126.457214} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1014805433 @@ -622219,7 +624962,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1014842607 @@ -622601,7 +625344,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1015462509 @@ -623393,7 +626136,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1017644120 @@ -623428,7 +626171,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1017762981 @@ -623566,7 +626309,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1018085102 @@ -624290,7 +627033,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1019776373 @@ -624322,11 +627065,11 @@ RectTransform: m_Father: {fileID: 1000969945} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1019884182 GameObject: m_ObjectHideFlags: 0 @@ -624543,7 +627286,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1020270542 @@ -625628,7 +628371,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1022959329 @@ -625722,7 +628465,7 @@ RectTransform: m_GameObject: {fileID: 1023025704} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1842957812} - {fileID: 389395229} @@ -625733,9 +628476,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1023113426 GameObject: m_ObjectHideFlags: 0 @@ -625984,7 +628727,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1023437145 @@ -626128,7 +628871,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1023735870 @@ -627349,7 +630092,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 225.20001, y: 77.85382} + m_AnchoredPosition: {x: 225.20001, y: 77.85383} m_SizeDelta: {x: 28, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1028234203 @@ -627423,7 +630166,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1029199701 @@ -627886,7 +630629,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1030175757 @@ -628211,7 +630954,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1030974340 @@ -628822,7 +631565,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1032114941 @@ -629569,7 +632312,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1034570335 @@ -629812,7 +632555,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1036798278 @@ -630062,7 +632805,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1037671664 @@ -630733,7 +633476,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1039948138 @@ -631436,7 +634179,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1041385913 @@ -632150,7 +634893,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1043699311 @@ -632258,11 +635001,11 @@ RectTransform: m_Father: {fileID: 1923450786} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1044127883 GameObject: m_ObjectHideFlags: 0 @@ -632294,9 +635037,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1044182961 GameObject: m_ObjectHideFlags: 0 @@ -632329,7 +635072,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1044261902 @@ -632363,11 +635106,11 @@ RectTransform: m_Father: {fileID: 111780571} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1044290085 GameObject: m_ObjectHideFlags: 0 @@ -632400,7 +635143,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1044353223 @@ -633051,7 +635794,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1046060950 @@ -634546,7 +637289,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1049699571 @@ -634827,7 +637570,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1050337761 @@ -635004,7 +637747,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1050579053 @@ -635111,11 +637854,11 @@ RectTransform: m_Father: {fileID: 1640796314} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1051117864 GameObject: m_ObjectHideFlags: 0 @@ -635257,7 +638000,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1051535104 @@ -635331,7 +638074,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1051969222 @@ -636076,7 +638819,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1053409231 @@ -636543,7 +639286,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1054323461 @@ -636785,11 +639528,11 @@ RectTransform: m_Father: {fileID: 625650502} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1055197365 GameObject: m_ObjectHideFlags: 0 @@ -637447,8 +640190,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -45.26213} - m_SizeDelta: {x: 84.135925, y: 13.087378} + m_AnchoredPosition: {x: 0, y: -48} + m_SizeDelta: {x: 86, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &1056938998 MonoBehaviour: @@ -638122,7 +640865,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1058202552 @@ -638429,7 +641172,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1058883628 @@ -638464,7 +641207,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1058883630 @@ -639636,11 +642379,11 @@ RectTransform: m_Father: {fileID: 124833369} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1061458187 GameObject: m_ObjectHideFlags: 0 @@ -639951,7 +642694,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1062123298 @@ -639986,7 +642729,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1062127029 @@ -640860,6 +643603,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -641124,7 +644035,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1064832551 @@ -642412,7 +645323,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1066513093 @@ -642618,7 +645529,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:10:54 + m_Text: 09:03:53 --- !u!222 &1067107706 CanvasRenderer: m_ObjectHideFlags: 0 @@ -642953,7 +645864,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1068188586 @@ -643375,7 +646286,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1068953745 @@ -644001,7 +646912,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1070849675 @@ -644066,7 +646977,7 @@ RectTransform: m_GameObject: {fileID: 1070862883} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2131791587} m_RootOrder: 1 @@ -644631,7 +647542,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1072531122 @@ -645445,7 +648356,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1076167877 @@ -646123,7 +649034,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1077053375 @@ -646304,9 +649215,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -1254} + m_AnchoredPosition: {x: 2, y: -944} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1078410191 MonoBehaviour: m_ObjectHideFlags: 0 @@ -646328,6 +649239,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 310 + m_ChartX: 0 + m_ChartY: -310 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -647943,7 +650856,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1079175937 @@ -648902,7 +651815,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1081631053 @@ -648930,7 +651843,7 @@ RectTransform: m_GameObject: {fileID: 1081631053} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 724523547} m_Father: {fileID: 957518023} @@ -648997,16 +651910,16 @@ RectTransform: m_GameObject: {fileID: 1081701299} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1986833636} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1081740671 GameObject: m_ObjectHideFlags: 0 @@ -649330,7 +652243,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1082308562 @@ -650122,7 +653035,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1083885336 @@ -650157,7 +653070,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1083889964 @@ -650579,7 +653492,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -87.877625, y: 13.053177} + m_AnchoredPosition: {x: -74.49997, y: 335.09775} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1084266871 @@ -650689,7 +653602,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1084567265 @@ -651088,11 +654001,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1086373793 GameObject: m_ObjectHideFlags: 0 @@ -651184,17 +654097,17 @@ RectTransform: m_GameObject: {fileID: 1086453458} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2121571050} m_Father: {fileID: 1696158610} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1086714243 GameObject: m_ObjectHideFlags: 0 @@ -651517,7 +654430,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1087514898 @@ -652382,9 +655295,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1089678036 GameObject: m_ObjectHideFlags: 0 @@ -652688,7 +655601,7 @@ RectTransform: m_GameObject: {fileID: 1090429981} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1398584631} m_Father: {fileID: 23308857} @@ -653010,11 +655923,11 @@ RectTransform: m_Father: {fileID: 654135076} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1091607533 GameObject: m_ObjectHideFlags: 0 @@ -653688,9 +656601,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1093273184 GameObject: m_ObjectHideFlags: 0 @@ -653976,7 +656889,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1093959101 @@ -654011,7 +656924,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1093972199 @@ -655052,7 +657965,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1096562329 @@ -655161,7 +658074,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1096857383 @@ -655196,7 +658109,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1097188107 @@ -656302,7 +659215,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1099491264 @@ -656627,7 +659540,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1100572540 @@ -657726,7 +660639,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 226, y: 20.268005} + m_AnchoredPosition: {x: 226, y: 20.26802} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1102420369 @@ -657909,7 +660822,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1103634229 @@ -658594,7 +661507,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1105035654 @@ -659123,7 +662036,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1106417941 @@ -659431,9 +662344,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -626} + m_AnchoredPosition: {x: 2, y: -316} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1107243630 MonoBehaviour: m_ObjectHideFlags: 0 @@ -659455,6 +662368,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 310 + m_ChartX: 0 + m_ChartY: -310 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -661907,7 +664822,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1109384322 @@ -662016,7 +664931,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1109470069 @@ -662405,7 +665320,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1110115310 @@ -662582,7 +665497,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1110572453 @@ -662829,7 +665744,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1111724945 @@ -662938,7 +665853,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1111874758 @@ -663116,11 +666031,11 @@ RectTransform: m_Father: {fileID: 1737585331} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1112835001 GameObject: m_ObjectHideFlags: 0 @@ -663404,7 +666319,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -184.11456, y: -76.363594} + m_AnchoredPosition: {x: -184.11456, y: -76.3636} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1113371456 @@ -663576,7 +666491,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1113817042 @@ -663889,7 +666804,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1114977646 @@ -663923,11 +666838,11 @@ RectTransform: m_Father: {fileID: 930446419} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1115043140 GameObject: m_ObjectHideFlags: 0 @@ -663960,7 +666875,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1115198021 @@ -664070,11 +666985,11 @@ RectTransform: m_Father: {fileID: 2057043785} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1115533891 GameObject: m_ObjectHideFlags: 0 @@ -664249,7 +667164,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1116432915 @@ -664362,11 +667277,11 @@ RectTransform: m_Father: {fileID: 2058807315} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1116569999 GameObject: m_ObjectHideFlags: 0 @@ -664547,7 +667462,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1116675134 @@ -664617,7 +667532,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1116779640 @@ -665499,7 +668414,7 @@ RectTransform: m_GameObject: {fileID: 1119708221} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 440543961} - {fileID: 520232347} @@ -665511,9 +668426,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1119716363 GameObject: m_ObjectHideFlags: 0 @@ -665546,7 +668461,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1119990963 @@ -665581,7 +668496,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -143.827, y: -70.54473} + m_AnchoredPosition: {x: -143.827, y: -70.54472} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1120120851 @@ -666260,7 +669175,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1121820624 @@ -666470,7 +669385,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1122296290 @@ -666506,7 +669421,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1122296292 @@ -668127,11 +671042,11 @@ RectTransform: m_Father: {fileID: 1693045525} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1127145717 GameObject: m_ObjectHideFlags: 0 @@ -668380,9 +671295,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1520} + m_AnchoredPosition: {x: 592, y: -1220} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1128003317 MonoBehaviour: m_ObjectHideFlags: 0 @@ -668404,6 +671319,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -670078,7 +672995,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 0.2 + m_Text: 0.0 --- !u!222 &1128017248 CanvasRenderer: m_ObjectHideFlags: 0 @@ -670188,11 +673105,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1128433819 GameObject: m_ObjectHideFlags: 0 @@ -670440,11 +673357,11 @@ RectTransform: m_Father: {fileID: 1078410190} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1129222744 GameObject: m_ObjectHideFlags: 0 @@ -670892,7 +673809,7 @@ RectTransform: m_GameObject: {fileID: 1130000566} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1018085103} - {fileID: 1299909632} @@ -670910,9 +673827,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1130034714 GameObject: m_ObjectHideFlags: 0 @@ -671196,7 +674113,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1130359735 @@ -671255,11 +674172,11 @@ RectTransform: m_Father: {fileID: 654135076} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1130435189 GameObject: m_ObjectHideFlags: 0 @@ -671508,7 +674425,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: -33.800003} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1131127491 @@ -671901,7 +674818,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 76.41669, y: 74.42857} + m_AnchoredPosition: {x: 76.41669, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1131707657 @@ -672178,7 +675095,7 @@ RectTransform: m_GameObject: {fileID: 1132288604} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 328378298} - {fileID: 630401739} @@ -672192,9 +675109,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1132357485 GameObject: m_ObjectHideFlags: 0 @@ -672227,7 +675144,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1132378097 @@ -672262,7 +675179,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1132379897 @@ -672297,7 +675214,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1132513688 @@ -672909,11 +675826,11 @@ RectTransform: m_Father: {fileID: 1835109743} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1134061796 GameObject: m_ObjectHideFlags: 0 @@ -673471,9 +676388,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1135452239 GameObject: m_ObjectHideFlags: 0 @@ -673689,7 +676606,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1136090980 @@ -673724,7 +676641,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1136174772 @@ -673833,7 +676750,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1136579582 @@ -674078,7 +676995,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1137050331 @@ -674506,7 +677423,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1138817535 @@ -675078,7 +677995,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1140510916 @@ -675219,9 +678136,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1141589368 GameObject: m_ObjectHideFlags: 0 @@ -675618,7 +678535,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1143098516 @@ -675644,7 +678561,7 @@ RectTransform: m_GameObject: {fileID: 1143098516} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1758149982} - {fileID: 391755223} @@ -675721,7 +678638,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -107.867294, y: -45.299995} + m_AnchoredPosition: {x: -107.867294, y: -45.299988} m_SizeDelta: {x: 37.333332, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1143388993 @@ -676040,7 +678957,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1144049591 @@ -676923,7 +679840,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1146188185 @@ -676958,7 +679875,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1146215503 @@ -676984,7 +679901,7 @@ RectTransform: m_GameObject: {fileID: 1146215503} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1229628359} - {fileID: 1275660059} @@ -677017,11 +679934,11 @@ RectTransform: m_Father: {fileID: 937217221} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1146435014 GameObject: m_ObjectHideFlags: 0 @@ -677713,7 +680630,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1148688249 @@ -677882,7 +680799,7 @@ RectTransform: m_GameObject: {fileID: 1148714610} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2029282517} - {fileID: 1717431708} @@ -677896,9 +680813,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1149114409 GameObject: m_ObjectHideFlags: 0 @@ -678694,9 +681611,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -680} + m_AnchoredPosition: {x: 2, y: -342} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1150011279 MonoBehaviour: m_ObjectHideFlags: 0 @@ -678731,6 +681648,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 1173.12 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -679059,7 +681978,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 - m_Clockwise: 0 + m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 m_SplitNumber: 0 @@ -679127,7 +682046,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679172,7 +682091,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679246,7 +682165,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679288,8 +682207,8 @@ MonoBehaviour: m_ShowDataDimension: 1 m_ShowDataName: 0 m_ShowDataIcon: 0 - m_Clip: 1 - m_Ignore: 1 + m_Clip: 0 + m_Ignore: 0 m_IgnoreValue: 0 m_ShowAsPositiveNumber: 0 m_RadarType: 0 @@ -679333,7 +682252,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679412,7 +682331,7 @@ MonoBehaviour: - 0 m_Data: - 0 - - 117 + - 134 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -679452,7 +682371,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679531,7 +682450,7 @@ MonoBehaviour: - 0 m_Data: - 1 - - 89 + - 95 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -679571,7 +682490,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679650,7 +682569,7 @@ MonoBehaviour: - 0 m_Data: - 2 - - 120 + - 141 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -679690,7 +682609,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679769,7 +682688,7 @@ MonoBehaviour: - 0 m_Data: - 3 - - 67 + - 127 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -679809,7 +682728,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -679888,7 +682807,7 @@ MonoBehaviour: - 0 m_Data: - 4 - - 65 + - 98 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -679928,7 +682847,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680007,7 +682926,7 @@ MonoBehaviour: - 0 m_Data: - 5 - - 91 + - 62 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680047,7 +682966,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680126,7 +683045,7 @@ MonoBehaviour: - 0 m_Data: - 6 - - 117 + - 90 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680166,7 +683085,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680245,7 +683164,7 @@ MonoBehaviour: - 0 m_Data: - 7 - - 71 + - 107 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680285,7 +683204,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680364,7 +683283,7 @@ MonoBehaviour: - 0 m_Data: - 8 - - 88 + - 111 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680404,7 +683323,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680483,7 +683402,7 @@ MonoBehaviour: - 0 m_Data: - 9 - - 64 + - 79 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680523,7 +683442,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680602,7 +683521,7 @@ MonoBehaviour: - 0 m_Data: - 10 - - 110 + - 90 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680642,7 +683561,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680721,7 +683640,7 @@ MonoBehaviour: - 0 m_Data: - 11 - - 144 + - 91 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680761,7 +683680,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680840,7 +683759,7 @@ MonoBehaviour: - 0 m_Data: - 12 - - 61 + - 138 - m_JsonData: m_DataFromJson: 0 m_Name: @@ -680880,7 +683799,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -680959,7 +683878,1911 @@ MonoBehaviour: - 0 m_Data: - 13 - - 84 + - 78 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 14 + - 142 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 15 + - 91 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 16 + - 70 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 17 + - 141 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 18 + - 131 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 19 + - 63 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 20 + - 86 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 21 + - 100 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 22 + - 136 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 23 + - 102 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 24 + - 118 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 25 + - 110 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 26 + - 138 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 27 + - 91 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 28 + - 145 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 29 + - 74 m_Settings: m_JsonData: m_DataFromJson: 0 @@ -680998,20 +685821,36 @@ MonoBehaviour: m_CeilRate: 0 m_Inverse: 0 m_Data: - - 02:09:08 - - 02:09:09 - - 02:09:10 - - 02:09:11 - - 02:09:12 - - 02:09:13 - - 02:09:14 - - 02:09:15 - - 02:09:16 - - 02:09:17 - - 02:09:18 - - 02:09:19 - - 02:09:20 - - 02:09:21 + - 09:02:04 + - 09:02:05 + - 09:02:06 + - 09:02:07 + - 09:02:08 + - 09:02:09 + - 09:02:10 + - 09:02:11 + - 09:02:12 + - 09:02:13 + - 09:02:14 + - 09:02:15 + - 09:02:16 + - 09:02:17 + - 09:02:18 + - 09:02:19 + - 09:02:20 + - 09:02:21 + - 09:02:22 + - 09:02:23 + - 09:02:24 + - 09:02:25 + - 09:02:26 + - 09:02:27 + - 09:02:28 + - 09:02:29 + - 09:02:30 + - 09:02:31 + - 09:02:32 + - 09:02:33 m_AxisLine: m_JsonData: m_DataFromJson: 0 @@ -681518,7 +686357,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1150305831 @@ -682342,7 +687181,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1151830686 @@ -682587,7 +687426,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1152527449 @@ -683569,7 +688408,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1155129758 @@ -683740,7 +688579,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1155478133 @@ -683982,7 +688821,7 @@ RectTransform: m_GameObject: {fileID: 1157247104} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 655335663} - {fileID: 1234859373} @@ -683991,7 +688830,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1157327786 @@ -684268,11 +689107,11 @@ RectTransform: m_Father: {fileID: 689547914} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1157694949 GameObject: m_ObjectHideFlags: 0 @@ -684430,7 +689269,7 @@ MonoBehaviour: m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} m_Name: m_EditorClassIdentifier: - m_Content: {fileID: 59826073} + m_Content: {fileID: 1458796671} m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 @@ -684583,11 +689422,11 @@ RectTransform: m_Father: {fileID: 926932800} m_RootOrder: 16 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1158274503 GameObject: m_ObjectHideFlags: 0 @@ -684797,7 +689636,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1159458719 @@ -684832,7 +689671,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1159628488 @@ -685084,7 +689923,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1159703921 @@ -685162,9 +690001,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1520} + m_AnchoredPosition: {x: 4, y: -1220} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1160070520 MonoBehaviour: m_ObjectHideFlags: 0 @@ -685186,6 +690025,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -688677,7 +693518,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1160967369 @@ -688751,7 +693592,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 157.88828, y: -49.055656} + m_AnchoredPosition: {x: 157.88828, y: -49.055664} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1161129360 @@ -689333,7 +694174,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 219.16669, y: 247.5} + m_AnchoredPosition: {x: 194.50002, y: -52.5} m_SizeDelta: {x: 49.333332, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1162328167 @@ -690072,7 +694913,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1163844743 @@ -690288,7 +695129,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1164316498 @@ -690759,9 +695600,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1165902209 GameObject: m_ObjectHideFlags: 0 @@ -690794,7 +695635,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1165987656 @@ -690897,7 +695738,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1166346570 @@ -691979,7 +696820,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1169808742 @@ -692794,7 +697635,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1172185758 @@ -692826,11 +697667,11 @@ RectTransform: m_Father: {fileID: 2070144964} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1172555286 GameObject: m_ObjectHideFlags: 0 @@ -693284,7 +698125,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1174009718 @@ -694352,7 +699193,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -87.29999, y: 53.199997} + m_AnchoredPosition: {x: -87.29999, y: 53.200005} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1176785119 @@ -695214,7 +700055,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1178879083 @@ -695284,7 +700125,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 292, y: 122.09999} + m_AnchoredPosition: {x: 292, y: -215.90001} m_SizeDelta: {x: 65.33333, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1179025241 @@ -695437,9 +700278,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 788, y: -606} + m_AnchoredPosition: {x: 788, y: -306} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1179388656 MonoBehaviour: m_ObjectHideFlags: 0 @@ -695461,6 +700302,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -696876,7 +701719,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1180936589 @@ -697201,7 +702044,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 98.25, y: 74.42857} + m_AnchoredPosition: {x: 98.25, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1182377437 @@ -697623,7 +702466,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 177, y: 247.21112} + m_AnchoredPosition: {x: 189.5, y: -52.5} m_SizeDelta: {x: 40, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1183584219 @@ -697697,7 +702540,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1183781007 @@ -698051,7 +702894,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1184570463 @@ -698189,7 +703032,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1184942388 @@ -698401,7 +703244,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1185498916 @@ -699542,11 +704385,11 @@ RectTransform: m_Father: {fileID: 2086937787} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1188347421 GameObject: m_ObjectHideFlags: 0 @@ -700075,7 +704918,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1190393265 @@ -700437,7 +705280,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1191638642 @@ -700581,7 +705424,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1192070192 @@ -700617,7 +705460,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1192070194 @@ -701392,7 +706235,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1193848727 @@ -701637,7 +706480,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1195467113 @@ -701889,7 +706732,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1195959298 @@ -702208,7 +707051,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1196628778 @@ -703712,7 +708555,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1202343831 @@ -703748,7 +708591,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1202343833 @@ -705585,9 +710428,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1206766576 GameObject: m_ObjectHideFlags: 0 @@ -705917,7 +710760,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1207425341 @@ -705985,7 +710828,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1207835036 @@ -706307,7 +711150,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1208729983 @@ -706455,7 +711298,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1209022010 @@ -706529,7 +711372,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1209658533 @@ -706564,7 +711407,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1209881134 @@ -706709,11 +711552,11 @@ RectTransform: m_Father: {fileID: 408536198} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1210514591 GameObject: m_ObjectHideFlags: 0 @@ -706747,7 +711590,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -310} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1210514593 @@ -706951,7 +711794,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1212092183 @@ -707418,7 +712261,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1213254896 @@ -707492,7 +712335,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 63.186035, y: -75.30216} + m_AnchoredPosition: {x: 63.186035, y: -75.302155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1213465111 @@ -707922,7 +712765,7 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: "\u67F1\u72B6\u56FE BarChart" + m_Text: "\u73AF\u5F62\u56FE RingChart" --- !u!222 &1214602855 CanvasRenderer: m_ObjectHideFlags: 0 @@ -707994,7 +712837,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 225.20001, y: -46.85383} + m_AnchoredPosition: {x: 225.20001, y: -46.85382} m_SizeDelta: {x: 28, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1214750944 @@ -708314,7 +713157,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1216583124 @@ -708382,7 +713225,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1216627499 @@ -708417,7 +713260,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1217042137 @@ -708521,7 +713364,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 62.13592, y: 17.087378} + m_SizeDelta: {x: 64, y: 18} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1217069506 MonoBehaviour: @@ -708742,7 +713585,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1218093100 @@ -708993,7 +713836,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1218605508 @@ -709695,7 +714538,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1220702644 @@ -709872,7 +714715,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1220933325 @@ -710404,7 +715247,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1222108634 @@ -712016,7 +716859,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1225615088 @@ -712051,7 +716894,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1226562507 @@ -712222,7 +717065,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1227096197 @@ -712901,7 +717744,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1229419433 @@ -713139,7 +717982,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1229964600 @@ -713464,7 +718307,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -118.09657, y: -123.90827} + m_AnchoredPosition: {x: -118.09657, y: -123.908264} m_SizeDelta: {x: 78.666664, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1230415993 @@ -714034,7 +718877,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1232195505 @@ -714137,7 +718980,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1232765496 @@ -714246,7 +719089,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 194.5, y: 150} + m_AnchoredPosition: {x: 194.5, y: -150} m_SizeDelta: {x: 59.333332, y: 35.333336} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1232768485 @@ -714745,14 +719588,14 @@ RectTransform: m_GameObject: {fileID: 1233437468} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1401881374} 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: 42, y: 159} + m_AnchoredPosition: {x: 142, y: 259} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1233437470 @@ -714787,7 +719630,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 0.6 + m_Text: --- !u!222 &1233437471 CanvasRenderer: m_ObjectHideFlags: 0 @@ -715304,9 +720147,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1235317224 GameObject: m_ObjectHideFlags: 0 @@ -715549,7 +720392,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1236513025 @@ -715619,7 +720462,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1236639994 @@ -716258,7 +721101,7 @@ RectTransform: m_GameObject: {fileID: 1238548150} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1798268557} - {fileID: 12401226} @@ -716270,9 +721113,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1238836644 GameObject: m_ObjectHideFlags: 0 @@ -716731,7 +721574,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1239443640 @@ -717062,7 +721905,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1239681119 @@ -717384,7 +722227,7 @@ RectTransform: m_GameObject: {fileID: 1240240484} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 947224712} m_RootOrder: 1 @@ -717716,7 +722559,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1242033444 @@ -717819,7 +722662,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1242231631 @@ -717854,7 +722697,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1242283657 @@ -718167,7 +723010,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1242659748 @@ -718479,7 +723322,7 @@ RectTransform: m_GameObject: {fileID: 1244044146} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 93148953} - {fileID: 419848400} @@ -718491,9 +723334,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1244292907 GameObject: m_ObjectHideFlags: 0 @@ -718987,11 +723830,11 @@ RectTransform: m_Father: {fileID: 625650502} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1246015924 GameObject: m_ObjectHideFlags: 0 @@ -719024,7 +723867,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 82, y: -68.96667} + m_AnchoredPosition: {x: 82, y: -68.96666} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1246118357 @@ -719264,7 +724107,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 98.25, y: -74.14286} + m_AnchoredPosition: {x: 98.25, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1246773338 @@ -720527,7 +725370,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1251379712 @@ -720942,14 +725785,14 @@ RectTransform: m_GameObject: {fileID: 1252457213} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 946620814} 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: 42, y: 159} + m_AnchoredPosition: {x: 142, y: 259} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1252457215 @@ -720984,7 +725827,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 6.1 + m_Text: --- !u!222 &1252457216 CanvasRenderer: m_ObjectHideFlags: 0 @@ -721091,7 +725934,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1253498178 @@ -721767,7 +726610,7 @@ RectTransform: m_GameObject: {fileID: 1254337731} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1814396400} - {fileID: 1642575313} @@ -721779,9 +726622,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1254511570 GameObject: m_ObjectHideFlags: 0 @@ -721889,7 +726732,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1254579812 @@ -722105,7 +726948,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1254823149 @@ -722688,7 +727531,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1256821325 @@ -723116,7 +727959,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1258333697 @@ -723890,7 +728733,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1259636633 @@ -724933,7 +729776,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1262032570 @@ -725313,11 +730156,11 @@ RectTransform: m_Father: {fileID: 1150011278} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1263995638 GameObject: m_ObjectHideFlags: 0 @@ -726218,7 +731061,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1265544817 @@ -726577,7 +731420,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1266778208 @@ -726789,7 +731632,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1267270616 @@ -727078,7 +731921,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1267773620 @@ -727495,7 +732338,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1268946109 @@ -727601,11 +732444,11 @@ RectTransform: m_Father: {fileID: 426818149} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1269107261 GameObject: m_ObjectHideFlags: 0 @@ -727998,7 +732841,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1270045494 @@ -728107,7 +732950,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1270210778 @@ -728142,7 +732985,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1270298368 @@ -728609,7 +733452,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1271484835 @@ -728931,7 +733774,7 @@ RectTransform: m_GameObject: {fileID: 1272451706} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 983081317} - {fileID: 1163844742} @@ -728940,11 +733783,11 @@ RectTransform: m_Father: {fileID: 1791966574} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1272487950 GameObject: m_ObjectHideFlags: 0 @@ -728977,7 +733820,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1272527574 @@ -729145,7 +733988,7 @@ RectTransform: m_GameObject: {fileID: 1272651535} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1382842069} - {fileID: 1867604366} @@ -729154,9 +733997,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1272827319 GameObject: m_ObjectHideFlags: 0 @@ -729390,7 +734233,7 @@ RectTransform: m_GameObject: {fileID: 1273045177} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1015462508} - {fileID: 2014156686} @@ -729402,9 +734245,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1273138640 GameObject: m_ObjectHideFlags: 0 @@ -729675,14 +734518,14 @@ RectTransform: m_GameObject: {fileID: 1274044021} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 946620814} 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: 42, y: 223.5} + m_AnchoredPosition: {x: 142, y: 323.5} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1274044023 @@ -729717,7 +734560,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 9.1 + m_Text: --- !u!222 &1274044024 CanvasRenderer: m_ObjectHideFlags: 0 @@ -729794,6 +734637,74 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1274315480 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1274315481} + - component: {fileID: 1274315483} + - component: {fileID: 1274315482} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1274315481 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1274315480} + 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: 1682926797} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 10} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1274315482 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1274315480} + 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.38039216, g: 0.627451, b: 0.65882355, 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 &1274315483 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1274315480} --- !u!1 &1274318533 GameObject: m_ObjectHideFlags: 0 @@ -729826,7 +734737,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1274367162 @@ -730081,9 +734992,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1275337479 GameObject: m_ObjectHideFlags: 0 @@ -730367,7 +735278,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1275958880 @@ -730393,7 +735304,7 @@ RectTransform: m_GameObject: {fileID: 1275958880} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1229788042} - {fileID: 454204483} @@ -730412,11 +735323,11 @@ RectTransform: m_Father: {fileID: 575086071} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1276347668 GameObject: m_ObjectHideFlags: 0 @@ -730558,7 +735469,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1276839333 @@ -730593,7 +735504,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1277256673 @@ -730628,7 +735539,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1277393970 @@ -730881,7 +735792,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 52, y: 124.28571} + m_AnchoredPosition: {x: 52, y: 124.285706} m_SizeDelta: {x: 60, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1278254986 @@ -731667,7 +736578,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1280998553 @@ -732054,7 +736965,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1282538247 @@ -732385,7 +737296,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1283201766 @@ -732848,7 +737759,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1284168149 @@ -733203,7 +738114,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1284620106 @@ -733238,7 +738149,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1284737973 @@ -733767,7 +738678,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1285666936 @@ -733871,7 +738782,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1286051994 @@ -734295,7 +739206,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1288021886 @@ -735528,7 +740439,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1291734686 @@ -735602,7 +740513,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1291873554 @@ -735814,7 +740725,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1293168600 @@ -736464,7 +741375,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1294074020 @@ -737289,7 +742200,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1295707284 @@ -737432,9 +742343,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -302} + m_AnchoredPosition: {x: 2, y: -2} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1296083103 MonoBehaviour: m_ObjectHideFlags: 0 @@ -737456,6 +742367,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -738672,7 +743585,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1296127879 @@ -738747,7 +743660,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1296397894 @@ -739060,7 +743973,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1297435470 @@ -739189,7 +744102,7 @@ RectTransform: m_GameObject: {fileID: 1297703992} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1984264382} m_RootOrder: 1 @@ -740710,7 +745623,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 112.30002, y: 45.699997} + m_AnchoredPosition: {x: 112.30002, y: 45.700012} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1300721092 @@ -741094,6 +746007,75 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1301364338 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1301364339} + - component: {fileID: 1301364341} + - component: {fileID: 1301364340} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1301364339 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1301364338} + 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: + - {fileID: 1960240921} + m_Father: {fileID: 1674745765} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 22, y: 0} + m_SizeDelta: {x: 56.666668, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1301364340 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1301364338} + 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, g: 0, b: 0, a: 0} + 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 &1301364341 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1301364338} --- !u!1 &1301473974 GameObject: m_ObjectHideFlags: 0 @@ -741348,7 +746330,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1302747873 @@ -741383,7 +746365,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1302944934 @@ -742082,17 +747064,17 @@ RectTransform: m_GameObject: {fileID: 1304621850} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 116251641} m_Father: {fileID: 1635452290} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1304904921 GameObject: m_ObjectHideFlags: 0 @@ -742130,9 +747112,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 395, y: -606} + m_AnchoredPosition: {x: 395, y: -306} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1304904923 MonoBehaviour: m_ObjectHideFlags: 0 @@ -742154,6 +747136,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -743422,9 +748406,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1305680976 GameObject: m_ObjectHideFlags: 0 @@ -743876,7 +748860,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1306570785 @@ -743944,7 +748928,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1306942428 @@ -744899,8 +749883,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -15.087378} - m_SizeDelta: {x: 84.135925, y: 13.087378} + m_AnchoredPosition: {x: 0, y: -16} + m_SizeDelta: {x: 86, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &1308405185 MonoBehaviour: @@ -745411,7 +750395,7 @@ RectTransform: m_GameObject: {fileID: 1309435833} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1367515978} - {fileID: 280980999} @@ -745420,7 +750404,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1309511562 @@ -745765,7 +750749,7 @@ RectTransform: m_GameObject: {fileID: 1310287647} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1915350840} - {fileID: 1015665350} @@ -745783,9 +750767,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1310411333 GameObject: m_ObjectHideFlags: 0 @@ -746353,7 +751337,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1312432841 @@ -746600,7 +751584,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1312829395 @@ -746960,7 +751944,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1313512050 @@ -747310,7 +752294,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1314201127 @@ -747348,9 +752332,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1314314332 GameObject: m_ObjectHideFlags: 0 @@ -747935,7 +752919,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 61.599884, y: -100.284996} + m_AnchoredPosition: {x: 54.7659, y: 241.88318} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1315744038 @@ -748038,7 +753022,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1315888012 @@ -748620,9 +753604,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1317038151 GameObject: m_ObjectHideFlags: 0 @@ -748804,7 +753788,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1317347950 @@ -748981,7 +753965,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1317877944 @@ -749586,7 +754570,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1318996654 @@ -749872,7 +754856,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 42, y: 81.6} + m_AnchoredPosition: {x: 42, y: 81.600006} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1319946983 @@ -750132,9 +755116,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1320552128 GameObject: m_ObjectHideFlags: 0 @@ -750480,7 +755464,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1321341701 @@ -750725,7 +755709,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1321800176 @@ -750796,6 +755780,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1321800176} +--- !u!1 &1322003209 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1322003210} + - component: {fileID: 1322003212} + - component: {fileID: 1322003211} + m_Layer: 0 + m_Name: axis_y8 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1322003210 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1322003209} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 500875643} + 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: 52, y: 237.77779} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1322003211 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1322003209} + 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.31764707, g: 0.3019608, b: 0.3019608, 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: 18 + 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: 100000 +--- !u!222 &1322003212 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1322003209} --- !u!1 &1322278789 GameObject: m_ObjectHideFlags: 0 @@ -751962,7 +757020,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1326154731 @@ -752097,7 +757155,7 @@ RectTransform: m_GameObject: {fileID: 1326574279} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 488657190} - {fileID: 933837770} @@ -752108,9 +757166,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1326593568 GameObject: m_ObjectHideFlags: 0 @@ -752365,7 +757423,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1326963985 @@ -753192,7 +758250,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1327831545 @@ -753296,7 +758354,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1328030490 @@ -753574,7 +758632,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1328445821 @@ -753884,7 +758942,7 @@ RectTransform: m_GameObject: {fileID: 1329033688} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 73985466} - {fileID: 420917259} @@ -753895,9 +758953,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1329485485 GameObject: m_ObjectHideFlags: 0 @@ -754459,7 +759517,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1332068298 @@ -754532,9 +759590,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1332221554 GameObject: m_ObjectHideFlags: 0 @@ -755252,7 +760310,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1334186047 @@ -755464,7 +760522,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 52, y: 45.714287} + m_AnchoredPosition: {x: 52, y: 45.71428} m_SizeDelta: {x: 60, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1334989240 @@ -755870,7 +760928,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1335972832 @@ -755938,7 +760996,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1336337706 @@ -756115,7 +761173,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1336895358 @@ -756150,7 +761208,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 12.5, y: -82.67521} + m_AnchoredPosition: {x: 12.5, y: -82.6752} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1337053257 @@ -756654,7 +761712,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1338185510 @@ -757108,11 +762166,11 @@ RectTransform: m_Father: {fileID: 1737585331} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1338930307 GameObject: m_ObjectHideFlags: 0 @@ -757145,7 +762203,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1339007209 @@ -757538,7 +762596,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1339904914 @@ -757682,7 +762740,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1340552189 @@ -758738,11 +763796,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1340638831 GameObject: m_ObjectHideFlags: 0 @@ -758923,7 +763981,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1341818896 @@ -759600,18 +764658,18 @@ RectTransform: m_GameObject: {fileID: 1342835151} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1265544816} - {fileID: 1705701212} m_Father: {fileID: 947224712} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1343055891 GameObject: m_ObjectHideFlags: 0 @@ -759786,7 +764844,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1343397590 @@ -760716,7 +765774,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1346677869 @@ -761112,6 +766170,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1347296375} +--- !u!1 &1347306122 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1347306123} + - component: {fileID: 1347306125} + - component: {fileID: 1347306124} + m_Layer: 0 + m_Name: axis_x7 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1347306123 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1347306122} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1698887230} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1221.2001, y: -325} + m_SizeDelta: {x: 156.16, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1347306124 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1347306122} + 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.31764707, g: 0.3019608, b: 0.3019608, 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: 18 + 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: 09:02:11 +--- !u!222 &1347306125 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1347306122} --- !u!1 &1347377080 GameObject: m_ObjectHideFlags: 0 @@ -761420,17 +766552,17 @@ RectTransform: m_GameObject: {fileID: 1347546692} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 2120531411} m_Father: {fileID: 1984264382} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1347753906 GameObject: m_ObjectHideFlags: 0 @@ -761822,7 +766954,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1348019290 @@ -762891,7 +768023,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1350791136 @@ -763035,7 +768167,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1351039993 @@ -763144,7 +768276,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1351254282 @@ -763323,7 +768455,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 22, y: 0} - m_SizeDelta: {x: 62.13592, y: 13.087378} + m_SizeDelta: {x: 64, y: 14} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1351576501 MonoBehaviour: @@ -763526,7 +768658,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1352489984 @@ -765314,7 +770446,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1357316582 @@ -765417,7 +770549,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1357367414 @@ -765490,11 +770622,11 @@ RectTransform: m_Father: {fileID: 930446419} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1357517256 GameObject: m_ObjectHideFlags: 0 @@ -765916,7 +771048,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1360350214 @@ -766871,7 +772003,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1362883121 @@ -766906,7 +772038,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1363050219 @@ -767296,7 +772428,7 @@ RectTransform: m_GameObject: {fileID: 1363153901} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 943476582} m_Father: {fileID: 1984264382} @@ -767304,9 +772436,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1363254430 GameObject: m_ObjectHideFlags: 0 @@ -767827,7 +772959,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1364353819 @@ -768039,7 +773171,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1364726868 @@ -768753,7 +773885,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1366376472 @@ -768789,7 +773921,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1366376474 @@ -768848,7 +773980,7 @@ RectTransform: m_GameObject: {fileID: 1366616019} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1677818596} - {fileID: 1759478217} @@ -768860,9 +773992,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1366633067 GameObject: m_ObjectHideFlags: 0 @@ -768895,7 +774027,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1366770900 @@ -768930,7 +774062,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1366832719 @@ -769142,7 +774274,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1367515977 @@ -769732,7 +774864,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1368770241 @@ -770033,9 +775165,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -1020} + m_AnchoredPosition: {x: 2, y: -682} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1368920485 MonoBehaviour: m_ObjectHideFlags: 0 @@ -770057,6 +775189,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 1173.12 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -770268,9 +775402,9 @@ MonoBehaviour: m_Right: 0 m_Top: 30 m_Bottom: 0 - m_ItemWidth: 20 - m_ItemHeight: 10 - m_ItemGap: 5 + m_ItemWidth: 24 + m_ItemHeight: 12 + m_ItemGap: 10 m_ItemAutoColor: 1 m_Formatter: m_TextStyle: @@ -770281,7 +775415,7 @@ MonoBehaviour: m_Offset: {x: 2, y: 0} m_Color: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} - m_FontSize: 16 + m_FontSize: 18 m_FontStyle: 0 m_LineSpacing: 1 m_Data: [] @@ -770385,7 +775519,7 @@ MonoBehaviour: m_Max: 0 m_StartAngle: 0 m_EndAngle: 0 - m_Clockwise: 0 + m_Clockwise: 1 m_RoundCap: 0 m_RingGap: 10 m_SplitNumber: 0 @@ -770453,7 +775587,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -770498,7 +775632,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -770572,7 +775706,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -770614,8 +775748,8 @@ MonoBehaviour: m_ShowDataDimension: 2 m_ShowDataName: 0 m_ShowDataIcon: 0 - m_Clip: 1 - m_Ignore: 1 + m_Clip: 0 + m_Ignore: 0 m_IgnoreValue: 0 m_ShowAsPositiveNumber: 0 m_RadarType: 0 @@ -770659,7 +775793,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -770778,7 +775912,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -770897,7 +776031,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771016,7 +776150,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771135,7 +776269,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771254,7 +776388,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771373,7 +776507,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771492,7 +776626,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771611,7 +776745,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771730,7 +776864,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771849,7 +776983,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -771968,7 +777102,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772087,7 +777221,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772206,7 +777340,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772325,7 +777459,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772444,7 +777578,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772563,7 +777697,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772682,7 +777816,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772801,7 +777935,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -772920,7 +778054,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773039,7 +778173,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773158,7 +778292,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773277,7 +778411,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773396,7 +778530,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773515,7 +778649,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773634,7 +778768,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773753,7 +778887,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773872,7 +779006,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -773991,7 +779125,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774110,7 +779244,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774229,7 +779363,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774348,7 +779482,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774467,7 +779601,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774586,7 +779720,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774705,7 +779839,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774824,7 +779958,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -774943,7 +780077,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775062,7 +780196,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775181,7 +780315,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775300,7 +780434,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775419,7 +780553,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775538,7 +780672,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775657,7 +780791,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775776,7 +780910,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -775895,7 +781029,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776014,7 +781148,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776133,7 +781267,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776252,7 +781386,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776371,7 +781505,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776490,7 +781624,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776609,7 +781743,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776728,7 +781862,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776847,7 +781981,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -776966,7 +782100,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777085,7 +782219,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777204,7 +782338,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777323,7 +782457,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777442,7 +782576,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777561,7 +782695,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777680,7 +782814,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777799,7 +782933,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -777918,7 +783052,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778037,7 +783171,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778156,7 +783290,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778275,7 +783409,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778394,7 +783528,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778513,7 +783647,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778632,7 +783766,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778751,7 +783885,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778870,7 +784004,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -778989,7 +784123,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779108,7 +784242,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779227,7 +784361,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779346,7 +784480,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779465,7 +784599,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779584,7 +784718,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779703,7 +784837,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779822,7 +784956,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -779941,7 +785075,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780060,7 +785194,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780179,7 +785313,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780298,7 +785432,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780417,7 +785551,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780536,7 +785670,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780655,7 +785789,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780774,7 +785908,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -780893,7 +786027,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781012,7 +786146,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781131,7 +786265,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781250,7 +786384,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781369,7 +786503,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781488,7 +786622,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781607,7 +786741,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781726,7 +786860,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781845,7 +786979,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -781964,7 +787098,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782083,7 +787217,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782202,7 +787336,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782321,7 +787455,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782440,7 +787574,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782559,7 +787693,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782678,7 +787812,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782797,7 +787931,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -782916,7 +788050,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783035,7 +788169,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783154,7 +788288,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783273,7 +788407,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783392,7 +788526,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783511,7 +788645,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783630,7 +788764,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783749,7 +788883,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783868,7 +789002,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -783987,7 +789121,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784106,7 +789240,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784225,7 +789359,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784344,7 +789478,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784463,7 +789597,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784582,7 +789716,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784701,7 +789835,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784820,7 +789954,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -784939,7 +790073,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785058,7 +790192,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785177,7 +790311,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785296,7 +790430,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785415,7 +790549,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785534,7 +790668,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785653,7 +790787,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785772,7 +790906,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -785891,7 +791025,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786010,7 +791144,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786129,7 +791263,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786248,7 +791382,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786367,7 +791501,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786486,7 +791620,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786605,7 +791739,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786724,7 +791858,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786843,7 +791977,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -786962,7 +792096,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787081,7 +792215,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787200,7 +792334,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787319,7 +792453,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787438,7 +792572,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787557,7 +792691,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787676,7 +792810,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787795,7 +792929,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -787914,7 +793048,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788033,7 +793167,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788152,7 +793286,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788271,7 +793405,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788390,7 +793524,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788509,7 +793643,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788628,7 +793762,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788747,7 +793881,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788866,7 +794000,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -788985,7 +794119,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789104,7 +794238,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789223,7 +794357,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789342,7 +794476,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789461,7 +794595,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789580,7 +794714,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789699,7 +794833,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789818,7 +794952,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -789937,7 +795071,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790056,7 +795190,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790175,7 +795309,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790294,7 +795428,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790413,7 +795547,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790532,7 +795666,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790651,7 +795785,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790770,7 +795904,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -790889,7 +796023,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791008,7 +796142,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791127,7 +796261,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791246,7 +796380,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791365,7 +796499,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791484,7 +796618,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791603,7 +796737,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791722,7 +796856,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791841,7 +796975,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -791960,7 +797094,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792079,7 +797213,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792198,7 +797332,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792317,7 +797451,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792436,7 +797570,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792555,7 +797689,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792674,7 +797808,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792793,7 +797927,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -792912,7 +798046,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793031,7 +798165,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793150,7 +798284,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793269,7 +798403,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793388,7 +798522,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793507,7 +798641,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793626,7 +798760,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793745,7 +798879,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793864,7 +798998,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -793983,7 +799117,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794102,7 +799236,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794221,7 +799355,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794340,7 +799474,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794459,7 +799593,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794578,7 +799712,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794697,7 +799831,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794816,7 +799950,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -794935,7 +800069,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795054,7 +800188,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795173,7 +800307,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795292,7 +800426,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795411,7 +800545,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795530,7 +800664,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795649,7 +800783,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795768,7 +800902,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -795887,7 +801021,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796006,7 +801140,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796125,7 +801259,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796244,7 +801378,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796363,7 +801497,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796482,7 +801616,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796601,7 +801735,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796720,7 +801854,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796839,7 +801973,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -796958,7 +802092,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797077,7 +802211,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797196,7 +802330,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797315,7 +802449,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797434,7 +802568,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797553,7 +802687,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797672,7 +802806,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797791,7 +802925,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -797910,7 +803044,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798029,7 +803163,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798148,7 +803282,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798267,7 +803401,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798386,7 +803520,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798505,7 +803639,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798624,7 +803758,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798743,7 +803877,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798862,7 +803996,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -798981,7 +804115,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799100,7 +804234,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799219,7 +804353,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799338,7 +804472,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799457,7 +804591,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799576,7 +804710,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799695,7 +804829,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799814,7 +804948,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -799933,7 +805067,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800052,7 +805186,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800171,7 +805305,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800290,7 +805424,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800409,7 +805543,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800528,7 +805662,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800647,7 +805781,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800766,7 +805900,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -800885,7 +806019,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801004,7 +806138,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801123,7 +806257,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801242,7 +806376,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801361,7 +806495,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801480,7 +806614,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801599,7 +806733,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801718,7 +806852,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801837,7 +806971,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -801956,7 +807090,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802075,7 +807209,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802194,7 +807328,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802313,7 +807447,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802432,7 +807566,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802551,7 +807685,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802670,7 +807804,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802789,7 +807923,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -802908,7 +808042,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803027,7 +808161,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803146,7 +808280,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803265,7 +808399,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803384,7 +808518,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803503,7 +808637,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803622,7 +808756,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803741,7 +808875,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803860,7 +808994,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -803979,7 +809113,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804098,7 +809232,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804217,7 +809351,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804336,7 +809470,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804455,7 +809589,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804574,7 +809708,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804693,7 +809827,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804812,7 +809946,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -804931,7 +810065,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805050,7 +810184,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805169,7 +810303,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805288,7 +810422,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805407,7 +810541,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805526,7 +810660,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805645,7 +810779,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805764,7 +810898,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -805883,7 +811017,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806002,7 +811136,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806121,7 +811255,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806240,7 +811374,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806359,7 +811493,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806478,7 +811612,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806597,7 +811731,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806716,7 +811850,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806835,7 +811969,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -806954,7 +812088,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807073,7 +812207,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807192,7 +812326,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807311,7 +812445,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807430,7 +812564,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807549,7 +812683,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807668,7 +812802,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807787,7 +812921,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -807906,7 +813040,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808025,7 +813159,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808144,7 +813278,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808263,7 +813397,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808382,7 +813516,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808501,7 +813635,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808620,7 +813754,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808739,7 +813873,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808858,7 +813992,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -808977,7 +814111,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809096,7 +814230,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809215,7 +814349,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809334,7 +814468,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809453,7 +814587,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809572,7 +814706,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809691,7 +814825,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809810,7 +814944,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -809929,7 +815063,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810048,7 +815182,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810167,7 +815301,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810286,7 +815420,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810405,7 +815539,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810524,7 +815658,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810643,7 +815777,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810762,7 +815896,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -810881,7 +816015,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811000,7 +816134,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811119,7 +816253,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811238,7 +816372,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811357,7 +816491,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811476,7 +816610,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811595,7 +816729,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811714,7 +816848,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811833,7 +816967,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -811952,7 +817086,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812071,7 +817205,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812190,7 +817324,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812309,7 +817443,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812428,7 +817562,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812547,7 +817681,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812666,7 +817800,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812785,7 +817919,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -812904,7 +818038,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813023,7 +818157,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813142,7 +818276,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813261,7 +818395,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813380,7 +818514,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813499,7 +818633,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813618,7 +818752,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813737,7 +818871,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813856,7 +818990,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -813975,7 +819109,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814094,7 +819228,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814213,7 +819347,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814332,7 +819466,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814451,7 +819585,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814570,7 +819704,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814689,7 +819823,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814808,7 +819942,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -814927,7 +820061,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815046,7 +820180,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815165,7 +820299,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815284,7 +820418,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815403,7 +820537,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815522,7 +820656,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815641,7 +820775,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815760,7 +820894,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815879,7 +821013,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -815998,7 +821132,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816117,7 +821251,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816236,7 +821370,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816355,7 +821489,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816474,7 +821608,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816593,7 +821727,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816712,7 +821846,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816831,7 +821965,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -816950,7 +822084,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817069,7 +822203,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817188,7 +822322,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817307,7 +822441,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817426,7 +822560,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817545,7 +822679,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817664,7 +822798,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817783,7 +822917,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -817902,7 +823036,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818021,7 +823155,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818140,7 +823274,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818259,7 +823393,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818378,7 +823512,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818497,7 +823631,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818616,7 +823750,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818735,7 +823869,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818854,7 +823988,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -818973,7 +824107,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819092,7 +824226,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819211,7 +824345,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819330,7 +824464,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819449,7 +824583,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819568,7 +824702,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819687,7 +824821,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819806,7 +824940,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -819925,7 +825059,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820044,7 +825178,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820163,7 +825297,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820282,7 +825416,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820401,7 +825535,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820520,7 +825654,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820639,7 +825773,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820758,7 +825892,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820877,7 +826011,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -820996,7 +826130,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821115,7 +826249,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821234,7 +826368,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821353,7 +826487,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821472,7 +826606,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821591,7 +826725,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821710,7 +826844,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821829,7 +826963,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -821948,7 +827082,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822067,7 +827201,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822186,7 +827320,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822305,7 +827439,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822424,7 +827558,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822543,7 +827677,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822662,7 +827796,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822781,7 +827915,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -822900,7 +828034,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823019,7 +828153,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823138,7 +828272,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823257,7 +828391,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823376,7 +828510,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823495,7 +828629,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823614,7 +828748,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823733,7 +828867,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823852,7 +828986,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -823971,7 +829105,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824090,7 +829224,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824209,7 +829343,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824328,7 +829462,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824447,7 +829581,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824566,7 +829700,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824685,7 +829819,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824804,7 +829938,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -824923,7 +830057,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825042,7 +830176,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825161,7 +830295,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825280,7 +830414,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825399,7 +830533,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825518,7 +830652,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825637,7 +830771,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825756,7 +830890,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825875,7 +831009,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -825994,7 +831128,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826113,7 +831247,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826232,7 +831366,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826351,7 +831485,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826470,7 +831604,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826589,7 +831723,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826708,7 +831842,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826827,7 +831961,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -826946,7 +832080,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827065,7 +832199,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827184,7 +832318,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827303,7 +832437,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827422,7 +832556,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827541,7 +832675,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827660,7 +832794,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827779,7 +832913,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -827898,7 +833032,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828017,7 +833151,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828136,7 +833270,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828255,7 +833389,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828374,7 +833508,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828493,7 +833627,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828612,7 +833746,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828731,7 +833865,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828850,7 +833984,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -828969,7 +834103,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829088,7 +834222,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829207,7 +834341,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829326,7 +834460,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829445,7 +834579,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829564,7 +834698,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829683,7 +834817,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829802,7 +834936,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -829921,7 +835055,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830040,7 +835174,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830159,7 +835293,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830278,7 +835412,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830397,7 +835531,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830516,7 +835650,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830635,7 +835769,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830754,7 +835888,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830873,7 +836007,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -830992,7 +836126,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831111,7 +836245,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831230,7 +836364,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831349,7 +836483,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831468,7 +836602,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831587,7 +836721,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831706,7 +836840,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831825,7 +836959,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -831944,7 +837078,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832063,7 +837197,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832182,7 +837316,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832301,7 +837435,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832420,7 +837554,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832539,7 +837673,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832658,7 +837792,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832777,7 +837911,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -832896,7 +838030,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833015,7 +838149,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833134,7 +838268,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833253,7 +838387,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833372,7 +838506,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833491,7 +838625,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833610,7 +838744,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833729,7 +838863,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833848,7 +838982,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -833967,7 +839101,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834086,7 +839220,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834205,7 +839339,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834324,7 +839458,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834443,7 +839577,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834562,7 +839696,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834681,7 +839815,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834800,7 +839934,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -834919,7 +840053,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835038,7 +840172,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835157,7 +840291,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835276,7 +840410,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835395,7 +840529,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835514,7 +840648,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835633,7 +840767,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835752,7 +840886,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835871,7 +841005,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -835990,7 +841124,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836109,7 +841243,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836228,7 +841362,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836347,7 +841481,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836466,7 +841600,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836585,7 +841719,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836704,7 +841838,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836823,7 +841957,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -836942,7 +842076,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837061,7 +842195,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837180,7 +842314,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837299,7 +842433,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837418,7 +842552,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837537,7 +842671,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837656,7 +842790,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837775,7 +842909,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -837894,7 +843028,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838013,7 +843147,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838132,7 +843266,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838251,7 +843385,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838370,7 +843504,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838489,7 +843623,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838608,7 +843742,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838727,7 +843861,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838846,7 +843980,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -838965,7 +844099,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839084,7 +844218,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839203,7 +844337,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839322,7 +844456,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839441,7 +844575,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839560,7 +844694,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839679,7 +844813,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839798,7 +844932,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -839917,7 +845051,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840036,7 +845170,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840155,7 +845289,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840274,7 +845408,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840393,7 +845527,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840512,7 +845646,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840631,7 +845765,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840750,7 +845884,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840869,7 +846003,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -840988,7 +846122,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841107,7 +846241,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841226,7 +846360,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841345,7 +846479,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841464,7 +846598,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841583,7 +846717,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841702,7 +846836,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841821,7 +846955,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -841940,7 +847074,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842059,7 +847193,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842178,7 +847312,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842297,7 +847431,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842416,7 +847550,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842535,7 +847669,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842654,7 +847788,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842773,7 +847907,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -842892,7 +848026,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843011,7 +848145,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843130,7 +848264,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843249,7 +848383,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843368,7 +848502,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843487,7 +848621,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843606,7 +848740,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843725,7 +848859,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843844,7 +848978,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -843963,7 +849097,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844082,7 +849216,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844201,7 +849335,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844320,7 +849454,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844439,7 +849573,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844558,7 +849692,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844677,7 +849811,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844796,7 +849930,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -844915,7 +850049,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845034,7 +850168,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845153,7 +850287,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845272,7 +850406,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845391,7 +850525,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845510,7 +850644,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845629,7 +850763,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845748,7 +850882,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845867,7 +851001,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -845986,7 +851120,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846105,7 +851239,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846224,7 +851358,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846343,7 +851477,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846462,7 +851596,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846581,7 +851715,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846700,7 +851834,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846819,7 +851953,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -846938,7 +852072,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847057,7 +852191,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847176,7 +852310,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847295,7 +852429,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847414,7 +852548,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847533,7 +852667,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847652,7 +852786,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847771,7 +852905,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -847890,7 +853024,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848009,7 +853143,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848128,7 +853262,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848247,7 +853381,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848366,7 +853500,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848485,7 +853619,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848604,7 +853738,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848723,7 +853857,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848842,7 +853976,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -848961,7 +854095,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849080,7 +854214,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849199,7 +854333,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849318,7 +854452,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849437,7 +854571,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849556,7 +854690,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849675,7 +854809,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849794,7 +854928,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -849913,7 +855047,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850032,7 +855166,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850151,7 +855285,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850270,7 +855404,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850389,7 +855523,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850508,7 +855642,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850627,7 +855761,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850746,7 +855880,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850865,7 +855999,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -850984,7 +856118,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851103,7 +856237,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851222,7 +856356,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851341,7 +856475,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851460,7 +856594,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851579,7 +856713,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851698,7 +856832,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851817,7 +856951,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -851936,7 +857070,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852055,7 +857189,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852174,7 +857308,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852293,7 +857427,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852412,7 +857546,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852531,7 +857665,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852650,7 +857784,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852769,7 +857903,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -852888,7 +858022,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853007,7 +858141,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853126,7 +858260,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853245,7 +858379,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853364,7 +858498,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853483,7 +858617,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853602,7 +858736,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853721,7 +858855,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853840,7 +858974,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -853959,7 +859093,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854078,7 +859212,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854197,7 +859331,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854316,7 +859450,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854435,7 +859569,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854554,7 +859688,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854673,7 +859807,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854792,7 +859926,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -854911,7 +860045,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855030,7 +860164,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855149,7 +860283,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855268,7 +860402,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855387,7 +860521,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855506,7 +860640,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855625,7 +860759,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855744,7 +860878,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855863,7 +860997,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -855982,7 +861116,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856101,7 +861235,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856220,7 +861354,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856339,7 +861473,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856458,7 +861592,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856577,7 +861711,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856696,7 +861830,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856815,7 +861949,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -856934,7 +862068,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857053,7 +862187,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857172,7 +862306,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857291,7 +862425,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857410,7 +862544,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857529,7 +862663,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857648,7 +862782,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857767,7 +862901,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -857886,7 +863020,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858005,7 +863139,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858124,7 +863258,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858243,7 +863377,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858362,7 +863496,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858481,7 +863615,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858600,7 +863734,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858719,7 +863853,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858838,7 +863972,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -858957,7 +864091,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859076,7 +864210,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859195,7 +864329,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859314,7 +864448,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859433,7 +864567,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859552,7 +864686,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859671,7 +864805,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859790,7 +864924,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -859909,7 +865043,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860028,7 +865162,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860147,7 +865281,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860266,7 +865400,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860385,7 +865519,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860504,7 +865638,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860623,7 +865757,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860742,7 +865876,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860861,7 +865995,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -860980,7 +866114,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861099,7 +866233,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861218,7 +866352,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861337,7 +866471,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861456,7 +866590,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861575,7 +866709,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861694,7 +866828,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861813,7 +866947,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -861932,7 +867066,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862051,7 +867185,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862170,7 +867304,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862289,7 +867423,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862408,7 +867542,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862527,7 +867661,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862646,7 +867780,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862765,7 +867899,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -862884,7 +868018,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863003,7 +868137,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863122,7 +868256,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863241,7 +868375,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863360,7 +868494,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863479,7 +868613,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863598,7 +868732,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863717,7 +868851,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863836,7 +868970,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -863955,7 +869089,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864074,7 +869208,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864193,7 +869327,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864312,7 +869446,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864431,7 +869565,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864550,7 +869684,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864669,7 +869803,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864788,7 +869922,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -864907,7 +870041,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865026,7 +870160,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865145,7 +870279,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865264,7 +870398,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865383,7 +870517,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865502,7 +870636,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865621,7 +870755,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865740,7 +870874,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865859,7 +870993,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -865978,7 +871112,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866097,7 +871231,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866216,7 +871350,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866335,7 +871469,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866454,7 +871588,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866573,7 +871707,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866692,7 +871826,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866811,7 +871945,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -866930,7 +872064,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867049,7 +872183,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867168,7 +872302,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867287,7 +872421,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867406,7 +872540,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867525,7 +872659,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867644,7 +872778,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867763,7 +872897,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -867882,7 +873016,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868001,7 +873135,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868120,7 +873254,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868239,7 +873373,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868358,7 +873492,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868477,7 +873611,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868596,7 +873730,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868715,7 +873849,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868834,7 +873968,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -868953,7 +874087,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869072,7 +874206,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869191,7 +874325,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869310,7 +874444,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869429,7 +874563,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869548,7 +874682,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869667,7 +874801,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869786,7 +874920,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -869905,7 +875039,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870024,7 +875158,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870143,7 +875277,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870262,7 +875396,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870381,7 +875515,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870500,7 +875634,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870619,7 +875753,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870738,7 +875872,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870857,7 +875991,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -870976,7 +876110,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871095,7 +876229,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871214,7 +876348,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871333,7 +876467,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871452,7 +876586,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871571,7 +876705,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871690,7 +876824,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871809,7 +876943,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -871928,7 +877062,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872047,7 +877181,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872166,7 +877300,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872285,7 +877419,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872404,7 +877538,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872523,7 +877657,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872642,7 +877776,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872761,7 +877895,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872880,7 +878014,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -872999,7 +878133,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873118,7 +878252,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873237,7 +878371,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873356,7 +878490,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873475,7 +878609,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873594,7 +878728,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873713,7 +878847,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873832,7 +878966,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -873951,7 +879085,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874070,7 +879204,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874189,7 +879323,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874308,7 +879442,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874427,7 +879561,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874546,7 +879680,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874665,7 +879799,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874784,7 +879918,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -874903,7 +880037,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875022,7 +880156,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875141,7 +880275,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875260,7 +880394,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875379,7 +880513,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875498,7 +880632,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875617,7 +880751,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875736,7 +880870,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875855,7 +880989,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -875974,7 +881108,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876093,7 +881227,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876212,7 +881346,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876331,7 +881465,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876450,7 +881584,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876569,7 +881703,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876688,7 +881822,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876807,7 +881941,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -876926,7 +882060,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877045,7 +882179,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877164,7 +882298,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877283,7 +882417,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877402,7 +882536,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877521,7 +882655,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877640,7 +882774,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877759,7 +882893,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877878,7 +883012,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -877997,7 +883131,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878116,7 +883250,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878235,7 +883369,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878354,7 +883488,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878473,7 +883607,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878592,7 +883726,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878711,7 +883845,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878830,7 +883964,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -878949,7 +884083,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879068,7 +884202,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879187,7 +884321,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879306,7 +884440,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879425,7 +884559,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879544,7 +884678,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879663,7 +884797,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879782,7 +884916,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -879901,7 +885035,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880020,7 +885154,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880139,7 +885273,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880258,7 +885392,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880377,7 +885511,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880496,7 +885630,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880615,7 +885749,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880734,7 +885868,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880853,7 +885987,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -880972,7 +886106,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881091,7 +886225,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881210,7 +886344,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881329,7 +886463,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881448,7 +886582,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881567,7 +886701,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881686,7 +886820,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881805,7 +886939,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -881924,7 +887058,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882043,7 +887177,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882162,7 +887296,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882281,7 +887415,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882400,7 +887534,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882519,7 +887653,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882638,7 +887772,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882757,7 +887891,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882876,7 +888010,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -882995,7 +888129,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883114,7 +888248,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883233,7 +888367,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883352,7 +888486,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883471,7 +888605,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883590,7 +888724,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883709,7 +888843,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883828,7 +888962,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -883947,7 +889081,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884066,7 +889200,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884185,7 +889319,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884304,7 +889438,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884423,7 +889557,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884542,7 +889676,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884661,7 +889795,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884780,7 +889914,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -884899,7 +890033,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885018,7 +890152,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885137,7 +890271,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885256,7 +890390,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885375,7 +890509,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885494,7 +890628,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885613,7 +890747,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885732,7 +890866,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885851,7 +890985,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -885970,7 +891104,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886089,7 +891223,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886208,7 +891342,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886327,7 +891461,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886446,7 +891580,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886565,7 +891699,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886684,7 +891818,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886803,7 +891937,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -886922,7 +892056,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887041,7 +892175,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887160,7 +892294,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887279,7 +892413,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887398,7 +892532,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887517,7 +892651,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887636,7 +892770,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887755,7 +892889,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887874,7 +893008,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -887993,7 +893127,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888112,7 +893246,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888231,7 +893365,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888350,7 +893484,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888469,7 +893603,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888588,7 +893722,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888707,7 +893841,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888826,7 +893960,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -888945,7 +894079,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889064,7 +894198,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889183,7 +894317,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889302,7 +894436,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889421,7 +894555,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889540,7 +894674,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889659,7 +894793,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889778,7 +894912,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -889897,7 +895031,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890016,7 +895150,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890135,7 +895269,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890254,7 +895388,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890373,7 +895507,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890492,7 +895626,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890611,7 +895745,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890730,7 +895864,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890849,7 +895983,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -890968,7 +896102,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891087,7 +896221,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891206,7 +896340,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891325,7 +896459,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891444,7 +896578,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891563,7 +896697,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891682,7 +896816,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891801,7 +896935,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -891920,7 +897054,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892039,7 +897173,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892158,7 +897292,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892277,7 +897411,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892396,7 +897530,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892515,7 +897649,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892634,7 +897768,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892753,7 +897887,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892872,7 +898006,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -892991,7 +898125,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893110,7 +898244,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893229,7 +898363,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893348,7 +898482,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893467,7 +898601,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893586,7 +898720,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893705,7 +898839,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893824,7 +898958,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -893943,7 +899077,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894062,7 +899196,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894181,7 +899315,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894300,7 +899434,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894419,7 +899553,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894538,7 +899672,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894657,7 +899791,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894776,7 +899910,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -894895,7 +900029,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895014,7 +900148,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895133,7 +900267,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895252,7 +900386,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895371,7 +900505,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895490,7 +900624,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895609,7 +900743,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895728,7 +900862,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895847,7 +900981,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -895966,7 +901100,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896085,7 +901219,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896204,7 +901338,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896323,7 +901457,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896442,7 +901576,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896561,7 +901695,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896680,7 +901814,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896799,7 +901933,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -896918,7 +902052,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897037,7 +902171,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897156,7 +902290,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897275,7 +902409,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897394,7 +902528,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897513,7 +902647,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897632,7 +902766,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897751,7 +902885,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897870,7 +903004,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -897989,7 +903123,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898108,7 +903242,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898227,7 +903361,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898346,7 +903480,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898465,7 +903599,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898584,7 +903718,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898703,7 +903837,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898822,7 +903956,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -898941,7 +904075,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -899060,7 +904194,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -899179,7 +904313,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -899298,7 +904432,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -899417,7 +904551,7 @@ MonoBehaviour: m_LineWidth: 1 m_LineLength1: 25 m_LineLength2: 15 - m_Border: 1 + m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} m_ForceENotation: 0 @@ -899497,6 +904631,125 @@ MonoBehaviour: m_Data: - 18.901917 - 0.05233666 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Data: + - 18.919369 + - 0.06975613 m_Settings: m_JsonData: m_DataFromJson: 0 @@ -899946,7 +905199,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: dfc9b72c568f74d1dbf37310311aac8e, type: 3} m_Name: m_EditorClassIdentifier: - angle: 1083 + angle: 1084 --- !u!222 &1368920487 CanvasRenderer: m_ObjectHideFlags: 0 @@ -899986,11 +905239,11 @@ RectTransform: m_Father: {fileID: 1865847025} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1369296663 GameObject: m_ObjectHideFlags: 0 @@ -900540,7 +905793,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1370570165 @@ -900782,7 +906035,7 @@ RectTransform: m_GameObject: {fileID: 1371381112} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1605711293} - {fileID: 1814447675} @@ -901664,7 +906917,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1373914693 @@ -901954,7 +907207,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 149.39337, y: -59.47666} + m_AnchoredPosition: {x: 149.39337, y: -59.47667} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1374807097 @@ -903097,7 +908350,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1378295671 @@ -903239,7 +908492,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1378715512 @@ -904051,7 +909304,7 @@ RectTransform: m_GameObject: {fileID: 1380539488} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 862342736} - {fileID: 623203558} @@ -904063,9 +909316,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1380631386 GameObject: m_ObjectHideFlags: 0 @@ -904101,9 +909354,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1380764374 GameObject: m_ObjectHideFlags: 0 @@ -904863,11 +910116,11 @@ RectTransform: m_Father: {fileID: 1368920484} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1382050612 GameObject: m_ObjectHideFlags: 0 @@ -904900,7 +910153,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1382083672 @@ -905328,7 +910581,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1382842068 @@ -905363,7 +910616,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1382842070 @@ -905511,7 +910764,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1383220188 @@ -905546,7 +910799,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1383220190 @@ -906040,7 +911293,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1385427657 @@ -906427,7 +911680,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -207.41666, y: -74.14286} + m_AnchoredPosition: {x: -207.41666, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1386556288 @@ -906497,7 +911750,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 292, y: 122.09999} + m_AnchoredPosition: {x: 292, y: -215.90001} m_SizeDelta: {x: 65.33333, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1386610513 @@ -906571,7 +911824,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1386707719 @@ -907058,9 +912311,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1387838386 GameObject: m_ObjectHideFlags: 0 @@ -907270,7 +912523,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1389062500 @@ -907408,7 +912661,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1389317550 @@ -907474,11 +912727,11 @@ RectTransform: m_Father: {fileID: 358352446} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1389367753 GameObject: m_ObjectHideFlags: 0 @@ -907502,7 +912755,7 @@ RectTransform: m_GameObject: {fileID: 1389367753} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1232765497} - {fileID: 2008051945} @@ -907515,9 +912768,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1389377722 GameObject: m_ObjectHideFlags: 0 @@ -907550,7 +912803,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1389380707 @@ -908680,7 +913933,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1392095598 @@ -909394,7 +914647,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1393890052 @@ -909538,7 +914791,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1394253071 @@ -909966,7 +915219,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1394932017 @@ -910075,7 +915328,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1395062627 @@ -910110,7 +915363,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1395062954 @@ -910145,7 +915398,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1395086929 @@ -910171,7 +915424,7 @@ RectTransform: m_GameObject: {fileID: 1395086929} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 851996782} - {fileID: 1974549330} @@ -910215,7 +915468,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 32.75, y: -74.14286} + m_AnchoredPosition: {x: 32.75, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1395191120 @@ -911242,7 +916495,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1398584630 @@ -911641,7 +916894,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1399646968 @@ -911683,11 +916936,11 @@ RectTransform: m_Father: {fileID: 2070144964} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1399900734 GameObject: m_ObjectHideFlags: 0 @@ -912213,9 +917466,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1401315776 GameObject: m_ObjectHideFlags: 0 @@ -912322,7 +917575,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -86.476074, y: -61.450768} + m_AnchoredPosition: {x: -86.476074, y: -61.45076} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1401735421 @@ -912399,9 +917652,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1401939468 GameObject: m_ObjectHideFlags: 0 @@ -912434,7 +917687,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1401971464 @@ -912612,7 +917865,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1403146207 @@ -912780,7 +918033,7 @@ RectTransform: m_GameObject: {fileID: 1403195820} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 285157796} - {fileID: 1998008400} @@ -912792,9 +918045,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1403221848 GameObject: m_ObjectHideFlags: 0 @@ -913333,18 +918586,18 @@ RectTransform: m_GameObject: {fileID: 1405037808} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1741566855} - {fileID: 1772523806} m_Father: {fileID: 1179388655} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1405182424 GameObject: m_ObjectHideFlags: 0 @@ -913844,7 +919097,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1405956672 @@ -913953,7 +919206,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1406202312 @@ -914092,7 +919345,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1406383531 @@ -914195,7 +919448,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1406698599 @@ -914401,11 +919654,11 @@ RectTransform: m_Father: {fileID: 926932800} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1407621903 GameObject: m_ObjectHideFlags: 0 @@ -914963,7 +920216,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -49.42354, y: -126.45723} + m_AnchoredPosition: {x: -49.42354, y: -126.457214} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1409286226 @@ -915181,7 +920434,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1410243185 @@ -915390,7 +920643,7 @@ RectTransform: m_GameObject: {fileID: 1410608579} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1571624607} - {fileID: 1646086577} @@ -915402,9 +920655,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1410618350 GameObject: m_ObjectHideFlags: 0 @@ -916746,7 +921999,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1413938940 @@ -917100,7 +922353,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1414307528 @@ -917880,7 +923133,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1416674635 @@ -918161,11 +923414,11 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1418048796 GameObject: m_ObjectHideFlags: 0 @@ -918198,7 +923451,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1418275050 @@ -918443,7 +923696,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1418839649 @@ -918586,7 +923839,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1418958965 @@ -918940,7 +924193,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1419289225 @@ -919118,7 +924371,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1419423864 @@ -919511,7 +924764,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1420051985 @@ -919899,7 +925152,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1420558413 @@ -919967,7 +925220,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1420650674 @@ -920218,7 +925471,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1420980322 @@ -920253,7 +925506,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1421063215 @@ -920422,7 +925675,7 @@ RectTransform: m_GameObject: {fileID: 1421138732} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1502770743} - {fileID: 1276347669} @@ -920434,9 +925687,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1421143364 GameObject: m_ObjectHideFlags: 0 @@ -920537,7 +925790,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1421816663 @@ -920783,7 +926036,7 @@ RectTransform: m_GameObject: {fileID: 1422194550} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2124767942} m_Father: {fileID: 1956011523} @@ -922221,7 +927474,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 12.5, y: -82.67521} + m_AnchoredPosition: {x: 12.5, y: -82.6752} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1425598954 @@ -922533,7 +927786,7 @@ RectTransform: m_GameObject: {fileID: 1425954811} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 279062094} - {fileID: 2072422502} @@ -922542,7 +927795,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1426005405 @@ -922947,7 +928200,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 292, y: 119} + m_AnchoredPosition: {x: 292, y: -219} m_SizeDelta: {x: 70, y: 32.666664} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1426611105 @@ -923348,7 +928601,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1427838254 @@ -923924,7 +929177,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1429301777 @@ -924576,7 +929829,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1430445968 @@ -924866,7 +930119,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1430934192 @@ -924901,7 +930154,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1431013796 @@ -925211,7 +930464,7 @@ RectTransform: m_GameObject: {fileID: 1431838058} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1696158610} m_RootOrder: 1 @@ -925640,7 +930893,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1433021262 @@ -925810,7 +931063,7 @@ RectTransform: m_GameObject: {fileID: 1433179614} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 887433282} m_Father: {fileID: 1584742783} @@ -926317,11 +931570,11 @@ RectTransform: m_Father: {fileID: 362412429} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1434401588 GameObject: m_ObjectHideFlags: 0 @@ -926496,7 +931749,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1435042503 @@ -927175,7 +932428,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1436305531 @@ -928424,7 +933677,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1438696863 @@ -928899,7 +934152,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1439689861 @@ -929116,9 +934369,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1440437554 GameObject: m_ObjectHideFlags: 0 @@ -929902,7 +935155,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1441793022 @@ -930157,7 +935410,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 22, y: 0} - m_SizeDelta: {x: 62.13592, y: 13.087378} + m_SizeDelta: {x: 64, y: 14} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1442288674 MonoBehaviour: @@ -930584,9 +935837,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1443300171 GameObject: m_ObjectHideFlags: 0 @@ -930851,7 +936104,7 @@ RectTransform: m_GameObject: {fileID: 1444229503} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 926536995} - {fileID: 311409081} @@ -930880,11 +936133,11 @@ RectTransform: m_Father: {fileID: 2131791587} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1444305913 GameObject: m_ObjectHideFlags: 0 @@ -931419,7 +936672,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1445434462 @@ -931835,7 +937088,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1447069700 @@ -931940,7 +937193,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1447667585 @@ -932049,7 +937302,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1448074814 @@ -932159,7 +937412,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1448190520 @@ -932227,7 +937480,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1448310086 @@ -933033,17 +938286,17 @@ RectTransform: m_GameObject: {fileID: 1450088614} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 816586235} m_Father: {fileID: 147405615} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1450250985 GameObject: m_ObjectHideFlags: 0 @@ -933372,7 +938625,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1451285735 @@ -933407,9 +938660,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1451342225 GameObject: m_ObjectHideFlags: 0 @@ -934332,9 +939585,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1453066210 GameObject: m_ObjectHideFlags: 0 @@ -934577,7 +939830,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1453665980 @@ -934970,7 +940223,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1455378170 @@ -935437,7 +940690,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1456107239 @@ -935472,7 +940725,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1456291131 @@ -935867,7 +941120,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1457262919 @@ -936398,7 +941651,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1458795368 @@ -936455,7 +941708,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!224 &1458796671 RectTransform: m_ObjectHideFlags: 0 @@ -936535,7 +941788,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1459262166 @@ -936673,7 +941926,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1460553709 @@ -936817,7 +942070,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1461116472 @@ -937279,9 +942532,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1463122290 GameObject: m_ObjectHideFlags: 0 @@ -937456,7 +942709,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 10.916687, y: 74.42857} + m_AnchoredPosition: {x: 10.916687, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1463426396 @@ -938028,7 +943281,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1465871836 @@ -938277,9 +943530,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -342} + m_AnchoredPosition: {x: 592, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1466214551 MonoBehaviour: m_ObjectHideFlags: 0 @@ -938301,6 +943554,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -960014,7 +965269,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1467923565 @@ -960257,7 +965512,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1468509436 @@ -960543,7 +965798,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1469244904 @@ -960647,7 +965902,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1469494781 @@ -961338,7 +966593,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1471577270 @@ -961556,7 +966811,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1472220860 @@ -962020,9 +967275,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 788, y: -302} + m_AnchoredPosition: {x: 788, y: -2} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1474375334 MonoBehaviour: m_ObjectHideFlags: 0 @@ -962044,6 +967299,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -964139,7 +969396,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1476000609 @@ -964396,7 +969653,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1476242266 @@ -964579,7 +969836,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -98.25, y: -74.14286} + m_AnchoredPosition: {x: -98.25, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1476785108 @@ -964972,7 +970229,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1477370853 @@ -965252,7 +970509,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1477829980 @@ -965503,7 +970760,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1478458715 @@ -965541,9 +970798,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1478559130 GameObject: m_ObjectHideFlags: 0 @@ -966103,11 +971360,11 @@ RectTransform: m_Father: {fileID: 1481638111} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1480904670 GameObject: m_ObjectHideFlags: 0 @@ -966351,7 +971608,7 @@ RectTransform: m_GameObject: {fileID: 1481638110} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.99996465, y: 0.99996465, z: 0.99996465} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1642581338} - {fileID: 385220453} @@ -966368,9 +971625,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -2128} + m_AnchoredPosition: {x: 4, y: -1828} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1481638112 MonoBehaviour: m_ObjectHideFlags: 0 @@ -966392,6 +971649,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -966849,8 +972108,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 0 - m_CurrDetailProgress: 87.44444 - m_DestDetailProgress: 526.55554 + m_CurrDetailProgress: 187.44444 + m_DestDetailProgress: 626.55554 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -968214,8 +973473,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 0 - m_CurrDetailProgress: 87.44444 - m_DestDetailProgress: 526.55554 + m_CurrDetailProgress: 187.44444 + m_DestDetailProgress: 626.55554 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -969579,8 +974838,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 0 - m_CurrDetailProgress: 87.44444 - m_DestDetailProgress: 526.55554 + m_CurrDetailProgress: 187.44444 + m_DestDetailProgress: 626.55554 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -972110,7 +977369,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1484114288 @@ -972528,7 +977787,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1485243858 @@ -972631,7 +977890,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1485628969 @@ -972889,9 +978148,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1485643216 GameObject: m_ObjectHideFlags: 0 @@ -972915,7 +978174,7 @@ RectTransform: m_GameObject: {fileID: 1485643216} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 91650907} - {fileID: 1962996813} @@ -972950,11 +978209,11 @@ RectTransform: m_Father: {fileID: 1160070519} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1485739518 GameObject: m_ObjectHideFlags: 0 @@ -973052,7 +978311,7 @@ RectTransform: m_GameObject: {fileID: 1486023563} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1411597845} - {fileID: 1497613886} @@ -973085,11 +978344,11 @@ RectTransform: m_Father: {fileID: 947224712} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1486194570 GameObject: m_ObjectHideFlags: 0 @@ -973196,7 +978455,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1486601211 @@ -973266,7 +978525,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1486711218 @@ -973299,11 +978558,11 @@ RectTransform: m_Father: {fileID: 1368920484} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1486738350 GameObject: m_ObjectHideFlags: 0 @@ -973768,7 +979027,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -87.29999, y: -57.15} + m_AnchoredPosition: {x: -87.29999, y: -57.149994} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1487511722 @@ -974025,7 +979284,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1487884489 @@ -975222,7 +980481,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1491895474 @@ -975541,7 +980800,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1492707518 @@ -975937,7 +981196,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1493861928 @@ -976826,7 +982085,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1495459336 @@ -977573,7 +982832,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1497830478 @@ -977608,7 +982867,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1497830480 @@ -977683,7 +982942,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1497863483 @@ -978325,6 +983584,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: 0 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -980297,7 +985558,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1500041307 @@ -980404,11 +985665,11 @@ RectTransform: m_Father: {fileID: 585854007} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1500269343 GameObject: m_ObjectHideFlags: 0 @@ -980843,9 +986104,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1502242269 GameObject: m_ObjectHideFlags: 0 @@ -980878,7 +986139,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1502770742 @@ -981022,7 +986283,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 219.16669, y: 222.5} + m_AnchoredPosition: {x: 194.50002, y: -77.5} m_SizeDelta: {x: 49.333332, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1503555736 @@ -981200,7 +986461,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1503736256 @@ -981303,7 +986564,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1503854291 @@ -981338,7 +986599,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1503900333 @@ -981383,9 +986644,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -342} + m_AnchoredPosition: {x: 592, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1503900335 MonoBehaviour: m_ObjectHideFlags: 0 @@ -981407,6 +986668,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -987470,11 +992733,11 @@ RectTransform: m_Father: {fileID: 1835109743} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1504453948 GameObject: m_ObjectHideFlags: 0 @@ -988174,7 +993437,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1506567221 @@ -988804,7 +994067,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1508274741 @@ -988876,11 +994139,11 @@ RectTransform: m_Father: {fileID: 654135076} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1508551683 GameObject: m_ObjectHideFlags: 0 @@ -989055,7 +994318,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1509105015 @@ -989707,7 +994970,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1511113747 @@ -990026,7 +995289,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1511956070 @@ -990351,7 +995614,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1512672106 @@ -990529,7 +995792,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1512794342 @@ -990670,9 +995933,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1513498267 GameObject: m_ObjectHideFlags: 0 @@ -990774,7 +996037,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1514845965 @@ -991132,7 +996395,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1516325982 @@ -991439,7 +996702,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1517053508 @@ -991652,7 +996915,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1517324475 @@ -992159,7 +997422,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1518665841 @@ -992587,7 +997850,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1520029916 @@ -992912,9 +998175,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1216} + m_AnchoredPosition: {x: 592, y: -916} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1520897808 MonoBehaviour: m_ObjectHideFlags: 0 @@ -992936,6 +998199,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -999819,7 +1005084,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1522156398 @@ -999928,7 +1005193,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1522410138 @@ -1000391,7 +1005656,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1523364662 @@ -1000671,7 +1005936,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1523724575 @@ -1001067,7 +1006332,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1523967040 @@ -1001927,7 +1007192,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1526753628 @@ -1003171,7 +1008436,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1529831176 @@ -1003854,7 +1009119,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1532651619 @@ -1004060,7 +1009325,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1533561639 @@ -1004701,7 +1009966,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1535102820 @@ -1005338,7 +1010603,7 @@ RectTransform: m_GameObject: {fileID: 1537709129} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 280364426} - {fileID: 2041439109} @@ -1005351,9 +1010616,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1537969252 GameObject: m_ObjectHideFlags: 0 @@ -1005882,9 +1011147,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1539336220 GameObject: m_ObjectHideFlags: 0 @@ -1007184,7 +1012449,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -156.83817, y: -52.303825} + m_AnchoredPosition: {x: -156.83817, y: -52.303818} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1542276594 @@ -1007762,7 +1013027,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1543477543 @@ -1007872,11 +1013137,11 @@ RectTransform: m_Father: {fileID: 1923450786} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1543555909 GameObject: m_ObjectHideFlags: 0 @@ -1007977,7 +1013242,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1543785592 @@ -1008012,7 +1013277,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1544005496 @@ -1008266,11 +1013531,11 @@ RectTransform: m_Father: {fileID: 2086937787} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1544277055 GameObject: m_ObjectHideFlags: 0 @@ -1008412,7 +1013677,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1545108961 @@ -1009653,7 +1014918,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1548333714 @@ -1009762,7 +1015027,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1548663995 @@ -1009793,11 +1015058,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1548745454 GameObject: m_ObjectHideFlags: 0 @@ -1009974,7 +1015239,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1549455196 @@ -1010219,7 +1015484,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1549897742 @@ -1010585,7 +1015850,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1550961477 @@ -1011080,7 +1016345,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1552477419 @@ -1011807,7 +1017072,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1554084156 @@ -1011909,7 +1017174,7 @@ RectTransform: m_GameObject: {fileID: 1554550373} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1774391565} m_Father: {fileID: 23308857} @@ -1011986,11 +1017251,11 @@ RectTransform: m_Father: {fileID: 426818149} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1554594228 GameObject: m_ObjectHideFlags: 0 @@ -1012591,7 +1017856,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1555287242 @@ -1013385,7 +1018650,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1556683202 @@ -1013420,7 +1018685,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1557004780 @@ -1013514,7 +1018779,7 @@ RectTransform: m_GameObject: {fileID: 1557027306} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 389667951} - {fileID: 1183781006} @@ -1013523,9 +1018788,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1557038016 GameObject: m_ObjectHideFlags: 0 @@ -1013558,7 +1018823,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1557038018 @@ -1014257,7 +1019522,7 @@ RectTransform: m_GameObject: {fileID: 1559450827} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 108624110} - {fileID: 58986754} @@ -1014266,9 +1019531,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1559517688 GameObject: m_ObjectHideFlags: 0 @@ -1014661,7 +1019926,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1560724247 @@ -1015271,9 +1020536,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1562249995 GameObject: m_ObjectHideFlags: 0 @@ -1015409,7 +1020674,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1562416260 @@ -1016331,7 +1021596,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 82, y: 48.63333} + m_AnchoredPosition: {x: 82, y: 48.633347} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1564108722 @@ -1016635,7 +1021900,7 @@ RectTransform: m_GameObject: {fileID: 1565122642} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 415768543} - {fileID: 1808125998} @@ -1016645,11 +1021910,11 @@ RectTransform: m_Father: {fileID: 1986833636} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1565526544 GameObject: m_ObjectHideFlags: 0 @@ -1016899,7 +1022164,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1565745504 @@ -1017179,7 +1022444,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1566703355 @@ -1017249,7 +1022514,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1567354402 @@ -1017432,7 +1022697,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1567607685 @@ -1018219,7 +1023484,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1569563131 @@ -1018260,11 +1023525,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1569853372 GameObject: m_ObjectHideFlags: 0 @@ -1018583,7 +1023848,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1570276884 @@ -1019268,7 +1024533,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1571692223 @@ -1019407,18 +1024672,18 @@ RectTransform: m_GameObject: {fileID: 1571828529} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1557038017} - {fileID: 1706265407} m_Father: {fileID: 937217221} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1571936664 GameObject: m_ObjectHideFlags: 0 @@ -1019965,7 +1025230,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 184.87317, y: -74.00832} + m_AnchoredPosition: {x: 184.87317, y: -74.008316} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1573738053 @@ -1020069,7 +1025334,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1573775751 @@ -1020206,11 +1025471,11 @@ RectTransform: m_Father: {fileID: 930446419} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1573970833 GameObject: m_ObjectHideFlags: 0 @@ -1020352,7 +1025617,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -107.20062, y: 57.69998} + m_AnchoredPosition: {x: -107.20062, y: 57.69999} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1574371189 @@ -1020745,7 +1026010,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1575091358 @@ -1021521,7 +1026786,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -120.08333, y: -74.14286} + m_AnchoredPosition: {x: -120.08333, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1577093560 @@ -1021556,7 +1026821,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1577283965 @@ -1021978,7 +1027243,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -21.656525, y: 95.884735} + m_AnchoredPosition: {x: -21.656525, y: 95.88474} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1578504823 @@ -1022515,7 +1027780,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1579197838 @@ -1022722,7 +1027987,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1579676694 @@ -1022790,7 +1028055,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1580042356 @@ -1022830,9 +1028095,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -910} + m_AnchoredPosition: {x: 2, y: -610} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1580042358 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1022854,6 +1028119,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1023824,7 +1029091,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1580352224 @@ -1023940,11 +1029207,11 @@ RectTransform: m_Father: {fileID: 362412429} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1580928557 GameObject: m_ObjectHideFlags: 0 @@ -1024258,11 +1029525,11 @@ RectTransform: m_Father: {fileID: 637564263} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1581394901 GameObject: m_ObjectHideFlags: 0 @@ -1024369,7 +1029636,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1581902417 @@ -1024552,7 +1029819,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1582127485 @@ -1025320,9 +1030587,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1584061029 GameObject: m_ObjectHideFlags: 0 @@ -1025713,7 +1030980,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1584684735 @@ -1025823,11 +1031090,11 @@ RectTransform: m_Father: {fileID: 585854007} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1584870176 GameObject: m_ObjectHideFlags: 0 @@ -1027001,7 +1032268,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1586998568 @@ -1027110,7 +1032377,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1587412094 @@ -1027644,7 +1032911,7 @@ RectTransform: m_GameObject: {fileID: 1589082224} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1474375333} m_RootOrder: 1 @@ -1027760,7 +1033027,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1589594319 @@ -1028285,7 +1033552,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1590463520 @@ -1028606,7 +1033873,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1590975112 @@ -1028641,7 +1033908,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1591205964 @@ -1028676,7 +1033943,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1591272807 @@ -1028944,7 +1034211,7 @@ RectTransform: m_GameObject: {fileID: 1592401303} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 575811149} - {fileID: 65004387} @@ -1028964,11 +1034231,11 @@ RectTransform: m_Father: {fileID: 1635452290} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1592410497 GameObject: m_ObjectHideFlags: 0 @@ -1029775,7 +1035042,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1593828170 @@ -1029910,7 +1035177,7 @@ RectTransform: m_GameObject: {fileID: 1593895647} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1149632953} m_Father: {fileID: 23308857} @@ -1030134,7 +1035401,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1595298799 @@ -1030311,7 +1035578,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 483.60254, y: 118.99999} + m_AnchoredPosition: {x: 483.60254, y: 119} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1595410938 @@ -1031640,7 +1036907,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1599994370 @@ -1031929,7 +1037196,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1601864286 @@ -1032135,7 +1037402,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -120.62401, y: 59.249985} + m_AnchoredPosition: {x: -120.62401, y: 59.249992} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1602577151 @@ -1032351,7 +1037618,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1603217406 @@ -1033279,7 +1038546,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1604830269 @@ -1033462,7 +1038729,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1605631107 @@ -1033497,7 +1038764,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 82, y: -67.96667} + m_AnchoredPosition: {x: 82, y: -67.966675} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1605634112 @@ -1034093,7 +1039360,7 @@ RectTransform: m_GameObject: {fileID: 1607360889} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1031121493} - {fileID: 515443877} @@ -1034112,11 +1039379,11 @@ RectTransform: m_Father: {fileID: 87068265} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1607512006 GameObject: m_ObjectHideFlags: 0 @@ -1034716,9 +1039983,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1609466572 GameObject: m_ObjectHideFlags: 0 @@ -1035031,7 +1040298,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1610004041 @@ -1035317,7 +1040584,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1610470301 @@ -1035934,7 +1041201,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1612793967 @@ -1036004,7 +1041271,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1612884759 @@ -1036296,7 +1041563,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1613902205 @@ -1036869,7 +1042136,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1615686800 @@ -1037513,7 +1042780,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1618338825 @@ -1037838,7 +1043105,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1619405738 @@ -1038256,7 +1043523,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1620949055 @@ -1038400,7 +1043667,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1621228786 @@ -1038509,7 +1043776,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1621547890 @@ -1038670,7 +1043937,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1622280298 @@ -1038853,7 +1044120,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1622577339 @@ -1039493,7 +1044760,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1624643646 @@ -1039857,11 +1045124,11 @@ RectTransform: m_Father: {fileID: 33516770} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1625745064 GameObject: m_ObjectHideFlags: 0 @@ -1039997,7 +1045264,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1626557234 @@ -1040252,11 +1045519,11 @@ RectTransform: m_Father: {fileID: 575425244} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1627275402 GameObject: m_ObjectHideFlags: 0 @@ -1040734,7 +1046001,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1628564177 @@ -1040984,7 +1046251,7 @@ RectTransform: m_GameObject: {fileID: 1628837460} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 574916395} m_Father: {fileID: 1910345652} @@ -1041134,7 +1046401,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1628967847 @@ -1041385,7 +1046652,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1629610969 @@ -1041813,7 +1047080,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1630695370 @@ -1042494,7 +1047761,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1633112269 @@ -1042656,7 +1047923,7 @@ RectTransform: m_GameObject: {fileID: 1633732319} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 395619423} - {fileID: 631964902} @@ -1042947,7 +1048214,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1634838744 @@ -1043266,7 +1048533,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1635452289 @@ -1043311,9 +1048578,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1824} + m_AnchoredPosition: {x: 4, y: -1524} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1635452291 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1043335,6 +1048602,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1045547,11 +1050816,11 @@ RectTransform: m_Father: {fileID: 1923450786} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1635993951 GameObject: m_ObjectHideFlags: 0 @@ -1046080,7 +1051349,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1637537875 @@ -1046405,7 +1051674,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1638217668 @@ -1046656,7 +1051925,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1639367991 @@ -1047044,7 +1052313,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1639789272 @@ -1047198,11 +1052467,11 @@ RectTransform: m_Father: {fileID: 517131343} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1640268487 GameObject: m_ObjectHideFlags: 0 @@ -1047395,9 +1052664,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -312} + m_AnchoredPosition: {x: 2, y: -2} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1640796315 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1047419,6 +1052688,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 310 + m_ChartX: 0 + m_ChartY: -310 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1049228,7 +1054499,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1643125298 @@ -1049405,7 +1054676,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1643190210 @@ -1051586,7 +1056857,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -54.58333, y: 74.42857} + m_AnchoredPosition: {x: -54.58333, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1649112388 @@ -1051979,7 +1057250,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1650113501 @@ -1052923,11 +1058194,11 @@ RectTransform: m_Father: {fileID: 1296083102} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1652503942 GameObject: m_ObjectHideFlags: 0 @@ -1053411,7 +1058682,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1653849211 @@ -1053476,17 +1058747,17 @@ RectTransform: m_GameObject: {fileID: 1653945692} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 983715772} m_Father: {fileID: 575086071} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1654009832 GameObject: m_ObjectHideFlags: 0 @@ -1054163,7 +1059434,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1655883975 @@ -1054443,7 +1059714,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1657413960 @@ -1054757,7 +1060028,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1658331798 @@ -1055253,7 +1060524,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -229.25, y: 74.42857} + m_AnchoredPosition: {x: -229.25, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1660142915 @@ -1055288,7 +1060559,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1660347386 @@ -1055964,7 +1061235,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1661804244 @@ -1055990,16 +1061261,16 @@ RectTransform: m_GameObject: {fileID: 1661804244} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1160070519} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1661948313 GameObject: m_ObjectHideFlags: 0 @@ -1056168,7 +1061439,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1662411497 @@ -1056203,7 +1061474,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1662432906 @@ -1056676,7 +1061947,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1663703952 @@ -1056853,7 +1062124,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1663864644 @@ -1057198,7 +1062469,7 @@ RectTransform: m_GameObject: {fileID: 1664723213} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2028879617} - {fileID: 1814112319} @@ -1057212,9 +1062483,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1664949971 GameObject: m_ObjectHideFlags: 0 @@ -1057926,7 +1063197,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1666522832 @@ -1058326,11 +1063597,11 @@ RectTransform: m_Father: {fileID: 33516770} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1667400019 GameObject: m_ObjectHideFlags: 0 @@ -1058825,7 +1064096,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1669370325 @@ -1060073,7 +1065344,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1673330290 @@ -1060256,7 +1065527,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1674498689 @@ -1060475,6 +1065746,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1674687453} +--- !u!1 &1674745764 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1674745765} + - component: {fileID: 1674745769} + - component: {fileID: 1674745768} + - component: {fileID: 1674745767} + - component: {fileID: 1674745766} + m_Layer: 0 + m_Name: "0_3\u7684\u6307\u6570" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1674745765 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1674745764} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1992810744} + - {fileID: 1301364339} + m_Father: {fileID: 385220453} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: -90.333336, y: 0} + m_SizeDelta: {x: 78.66667, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1674745766 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1674745764} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1674745767 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1674745764} + 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: 1674745768} + 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 &1674745768 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1674745764} + 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, g: 0, b: 0, a: 0} + 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 &1674745769 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1674745764} --- !u!1 &1675222883 GameObject: m_ObjectHideFlags: 0 @@ -1060655,7 +1066070,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1675712103 @@ -1060873,7 +1066288,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1676091821 @@ -1061053,11 +1066468,11 @@ RectTransform: m_Father: {fileID: 926932800} m_RootOrder: 17 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1677695202 GameObject: m_ObjectHideFlags: 0 @@ -1061374,7 +1066789,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1678104075 @@ -1061409,7 +1066824,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1678104077 @@ -1061484,7 +1066899,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1678205676 @@ -1061696,7 +1067111,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1679030972 @@ -1062147,7 +1067562,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1680452818 @@ -1062324,7 +1067739,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1680717488 @@ -1063042,7 +1068457,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1682017793 @@ -1063180,7 +1068595,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1682918407 @@ -1063251,6 +1068666,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1682918407} +--- !u!1 &1682926796 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1682926797} + - component: {fileID: 1682926801} + - component: {fileID: 1682926800} + - component: {fileID: 1682926799} + - component: {fileID: 1682926798} + m_Layer: 0 + m_Name: "2_1/2\u7684\u6307\u6570" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1682926797 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682926796} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1274315481} + - {fileID: 1882731370} + m_Father: {fileID: 385220453} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 83.66667, y: 0} + m_SizeDelta: {x: 92, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1682926798 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682926796} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1682926799 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682926796} + 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: 1682926800} + 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 &1682926800 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682926796} + 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, g: 0, b: 0, a: 0} + 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 &1682926801 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1682926796} --- !u!1 &1682929804 GameObject: m_ObjectHideFlags: 0 @@ -1063534,7 +1069093,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -207.41666, y: 74.42857} + m_AnchoredPosition: {x: -207.41666, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1683481288 @@ -1064157,7 +1069716,7 @@ RectTransform: m_GameObject: {fileID: 1684864715} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 137552808} - {fileID: 2030248621} @@ -1064169,9 +1069728,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1685022007 GameObject: m_ObjectHideFlags: 0 @@ -1064343,7 +1069902,7 @@ RectTransform: m_GameObject: {fileID: 1685487068} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1328055072} - {fileID: 288011892} @@ -1064930,7 +1070489,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1687676168 @@ -1065069,11 +1070628,11 @@ RectTransform: m_Father: {fileID: 1503900334} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1688388719 GameObject: m_ObjectHideFlags: 0 @@ -1066686,7 +1072245,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1691590050 @@ -1067042,7 +1072601,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 483.60254, y: 118.99999} + m_AnchoredPosition: {x: 483.60254, y: 119} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1691995914 @@ -1067299,9 +1072858,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -682} + m_AnchoredPosition: {x: 4, y: -344} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1693045526 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1067323,6 +1072882,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1069224,7 +1074785,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1694601509 @@ -1069259,7 +1074820,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 226, y: -24.96666} + m_AnchoredPosition: {x: 226, y: -24.966644} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1694708604 @@ -1069948,9 +1075509,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1824} + m_AnchoredPosition: {x: 592, y: -1524} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1696158611 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1069972,6 +1075533,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1071755,7 +1077318,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1696888470 @@ -1072000,7 +1077563,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1697400532 @@ -1072177,7 +1077740,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1697988096 @@ -1072778,14 +1078341,17 @@ RectTransform: - {fileID: 866780685} - {fileID: 260098076} - {fileID: 887357681} + - {fileID: 448018559} + - {fileID: 108223604} + - {fileID: 1347306123} m_Father: {fileID: 1150011278} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1698967601 GameObject: m_ObjectHideFlags: 0 @@ -1073560,7 +1079126,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1700778602 @@ -1073996,7 +1079562,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 77.79999, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1701845243 @@ -1074070,7 +1079636,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1701961241 @@ -1074540,7 +1080106,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1703575644 @@ -1074889,7 +1080455,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -310} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1704181250 @@ -1075025,7 +1080591,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1705193833 @@ -1075250,7 +1080816,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1705701213 @@ -1075460,7 +1081026,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1706265408 @@ -1075531,11 +1081097,11 @@ RectTransform: m_Father: {fileID: 1150011278} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1706454816 GameObject: m_ObjectHideFlags: 0 @@ -1077184,14 +1082750,14 @@ RectTransform: m_GameObject: {fileID: 1710247360} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1401881374} 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: 42, y: 94.5} + m_AnchoredPosition: {x: 142, y: 194.5} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1710247362 @@ -1077226,7 +1082792,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 0.3 + m_Text: --- !u!222 &1710247363 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1077266,7 +1082832,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1710338026 @@ -1077544,7 +1083110,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1711676570 @@ -1077859,7 +1083425,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1712172854 @@ -1078215,7 +1083781,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -32.75, y: -74.14286} + m_AnchoredPosition: {x: -32.75, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1713763666 @@ -1078393,7 +1083959,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1713824134 @@ -1078609,7 +1084175,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1714819061 @@ -1079002,7 +1084568,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1715806372 @@ -1079205,7 +1084771,7 @@ RectTransform: m_GameObject: {fileID: 1715963280} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1270210779} - {fileID: 485420798} @@ -1079217,11 +1084783,11 @@ RectTransform: m_Father: {fileID: 1474375333} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1716063009 GameObject: m_ObjectHideFlags: 0 @@ -1079396,7 +1084962,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 76.41669, y: -74.14286} + m_AnchoredPosition: {x: 76.41669, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1717276170 @@ -1079540,7 +1085106,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1717800604 @@ -1079900,7 +1085466,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -187.1, y: 78.7} + m_AnchoredPosition: {x: -187.1, y: 78.70001} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1718256548 @@ -1080813,7 +1086379,7 @@ RectTransform: m_GameObject: {fileID: 1720089493} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1012180002} - {fileID: 654283912} @@ -1080822,7 +1086388,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1720634835 @@ -1081735,7 +1087301,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1723891458 @@ -1081877,7 +1087443,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1724329878 @@ -1081912,7 +1087478,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1724482506 @@ -1082556,7 +1088122,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1726549836 @@ -1083504,7 +1089070,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1729269435 @@ -1083610,11 +1089176,11 @@ RectTransform: m_Father: {fileID: 426818149} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1729409574 GameObject: m_ObjectHideFlags: 0 @@ -1084190,7 +1089756,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1731736381 @@ -1084763,7 +1090329,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1733892513 @@ -1085594,7 +1091160,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1735649497 @@ -1085813,7 +1091379,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1736760739 @@ -1085916,7 +1091482,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1737433941 @@ -1086110,9 +1091676,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1824} + m_AnchoredPosition: {x: 592, y: -1524} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1737585332 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1086134,6 +1091700,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1086570,8 +1092138,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 302 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 402 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -1087697,8 +1093265,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 302 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 402 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -1089487,7 +1095055,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1738707871 @@ -1089557,7 +1095125,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1739142796 @@ -1089808,7 +1095376,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 28} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1740340318 @@ -1089982,11 +1095550,11 @@ RectTransform: m_Father: {fileID: 1078410190} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1740861766 GameObject: m_ObjectHideFlags: 0 @@ -1090093,7 +1095661,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1741183160 @@ -1091120,7 +1096688,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -246.09924, y: -54.521706} + m_AnchoredPosition: {x: -246.09924, y: -54.521713} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1743834867 @@ -1093447,7 +1099015,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1750523017 @@ -1093624,7 +1099192,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1750825840 @@ -1093724,7 +1099292,7 @@ RectTransform: m_GameObject: {fileID: 1750944838} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1286051993} - {fileID: 137939727} @@ -1093735,9 +1099303,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1751062320 GameObject: m_ObjectHideFlags: 0 @@ -1094228,7 +1099796,7 @@ MonoBehaviour: m_Panel: {fileID: 191364309} - m_Name: "\u67F1\u72B6\u56FE" m_Title: "\u67F1\u72B6\u56FE BarChart" - m_Selected: 1 + m_Selected: 0 m_Panel: {fileID: 59826072} - m_Name: "\u997C\u56FE" m_Title: "\u997C\u56FE PieChart" @@ -1094252,7 +1099820,7 @@ MonoBehaviour: m_Panel: {fileID: 1699689520} - m_Name: "\u73AF\u5F62\u56FE" m_Title: "\u73AF\u5F62\u56FE RingChart" - m_Selected: 0 + m_Selected: 1 m_Panel: {fileID: 1458796670} - m_Name: "\u5176\u4ED6" m_Title: "\u5176\u4ED6" @@ -1094500,7 +1100068,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1752643858 @@ -1094535,7 +1100103,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1752643860 @@ -1094609,7 +1100177,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1752801057 @@ -1095948,7 +1101516,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1756328724 @@ -1095980,11 +1101548,11 @@ RectTransform: m_Father: {fileID: 963730291} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1756451946 GameObject: m_ObjectHideFlags: 0 @@ -1096017,7 +1101585,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1756519798 @@ -1097219,11 +1102787,11 @@ RectTransform: m_Father: {fileID: 1693045525} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1760194414 GameObject: m_ObjectHideFlags: 0 @@ -1097330,7 +1102898,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1760571615 @@ -1098146,7 +1103714,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1762738334 @@ -1098288,7 +1103856,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1763519464 @@ -1098323,7 +1103891,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1763643770 @@ -1098467,7 +1104035,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -76.41666, y: 74.42857} + m_AnchoredPosition: {x: -76.41666, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1764241148 @@ -1098537,7 +1104105,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -143.827, y: -70.54473} + m_AnchoredPosition: {x: -143.827, y: -70.54474} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1764794657 @@ -1099827,7 +1105395,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1766837326 @@ -1100390,7 +1105958,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1768037172 @@ -1101702,7 +1107270,7 @@ RectTransform: m_GameObject: {fileID: 1770791710} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 497478016} m_Father: {fileID: 1474375333} @@ -1101710,9 +1107278,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1770838067 GameObject: m_ObjectHideFlags: 0 @@ -1102660,7 +1108228,7 @@ RectTransform: m_GameObject: {fileID: 1773256496} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 370232681} - {fileID: 963538057} @@ -1102672,9 +1108240,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1773487217 GameObject: m_ObjectHideFlags: 0 @@ -1102707,7 +1108275,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1773575469 @@ -1103641,7 +1109209,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1776258788 @@ -1103673,11 +1109241,11 @@ RectTransform: m_Father: {fileID: 1000969945} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1776262547 GameObject: m_ObjectHideFlags: 0 @@ -1103710,7 +1109278,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1776527720 @@ -1103745,7 +1109313,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1776527722 @@ -1104102,9 +1109670,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1777167921 GameObject: m_ObjectHideFlags: 0 @@ -1104315,7 +1109883,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1777304529 @@ -1104451,7 +1110019,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1777469134 @@ -1104557,9 +1110125,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1777623282 GameObject: m_ObjectHideFlags: 0 @@ -1104843,7 +1110411,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1778250113 @@ -1105096,7 +1110664,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1778870122 @@ -1105699,7 +1111267,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1780344273 @@ -1106760,6 +1112328,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1783528623} +--- !u!1 &1783622130 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1783622131} + - component: {fileID: 1783622135} + - component: {fileID: 1783622134} + - component: {fileID: 1783622133} + - component: {fileID: 1783622132} + m_Layer: 0 + m_Name: "1_2\u7684\u6307\u6570" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1783622131 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1783622130} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1979306638} + - {fileID: 443834714} + m_Father: {fileID: 385220453} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: -6.666664, y: 0} + m_SizeDelta: {x: 78.66667, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1783622132 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1783622130} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1783622133 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1783622130} + 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: 1783622134} + 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 &1783622134 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1783622130} + 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, g: 0, b: 0, a: 0} + 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 &1783622135 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1783622130} --- !u!1 &1783704350 GameObject: m_ObjectHideFlags: 0 @@ -1106851,16 +1112563,16 @@ RectTransform: m_GameObject: {fileID: 1783863684} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1635452290} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1783966651 GameObject: m_ObjectHideFlags: 0 @@ -1106893,7 +1112605,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1784110947 @@ -1107070,7 +1112782,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1785004507 @@ -1107321,7 +1113033,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1785257471 @@ -1108029,7 +1113741,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1787444563 @@ -1108480,7 +1114192,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1788992241 @@ -1108840,7 +1114552,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1789472417 @@ -1109052,11 +1114764,11 @@ RectTransform: m_Father: {fileID: 245361840} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1789926085 GameObject: m_ObjectHideFlags: 0 @@ -1109343,7 +1115055,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1791058206 @@ -1109820,9 +1115532,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1216} + m_AnchoredPosition: {x: 592, y: -916} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1791966575 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1109844,6 +1115556,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1112295,7 +1118009,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1792033402 @@ -1112369,7 +1118083,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1792748137 @@ -1113443,7 +1119157,7 @@ RectTransform: m_GameObject: {fileID: 1795837104} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 665730181} - {fileID: 667553253} @@ -1113458,9 +1119172,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1795977071 GameObject: m_ObjectHideFlags: 0 @@ -1114034,7 +1119748,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1797887324 @@ -1115172,7 +1120886,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1799955157 @@ -1116085,7 +1121799,7 @@ RectTransform: m_GameObject: {fileID: 1801910884} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1777304528} - {fileID: 1366376473} @@ -1116097,9 +1121811,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1802076587 GameObject: m_ObjectHideFlags: 0 @@ -1116206,7 +1121920,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -206, y: 14.1666565} + m_AnchoredPosition: {x: -206, y: 14.166672} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1802303757 @@ -1116606,11 +1122320,11 @@ RectTransform: m_Father: {fileID: 124833369} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1803154212 GameObject: m_ObjectHideFlags: 0 @@ -1116643,7 +1122357,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -120.08333, y: 74.42857} + m_AnchoredPosition: {x: -120.08333, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1803688665 @@ -1116714,11 +1122428,11 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1803960568 GameObject: m_ObjectHideFlags: 0 @@ -1117283,7 +1122997,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1805377688 @@ -1117351,7 +1123065,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1805615681 @@ -1117386,7 +1123100,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1806454397 @@ -1117569,7 +1123283,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1807363505 @@ -1117799,7 +1123513,7 @@ RectTransform: m_GameObject: {fileID: 1807821421} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 386845028} - {fileID: 130718880} @@ -1117811,9 +1123525,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1808125997 GameObject: m_ObjectHideFlags: 0 @@ -1117846,7 +1123560,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1808349806 @@ -1118463,7 +1124177,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1809169556 @@ -1118750,7 +1124464,7 @@ RectTransform: m_GameObject: {fileID: 1810343327} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 964380166} - {fileID: 1767060778} @@ -1118762,9 +1124476,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1810495235 GameObject: m_ObjectHideFlags: 0 @@ -1118872,7 +1124586,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1810528539 @@ -1119409,7 +1125123,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1811814844 @@ -1119734,7 +1125448,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1812292609 @@ -1119874,7 +1125588,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1812790320 @@ -1119978,7 +1125692,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1812843249 @@ -1120190,7 +1125904,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1813807273 @@ -1120225,7 +1125939,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -63.18602, y: -75.30216} + m_AnchoredPosition: {x: -63.18602, y: -75.302155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1813831780 @@ -1120511,7 +1126225,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1814286724 @@ -1121046,7 +1126760,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1816768026 @@ -1121145,11 +1126859,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1816971753 GameObject: m_ObjectHideFlags: 0 @@ -1121182,7 +1126896,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1817300149 @@ -1121217,7 +1126931,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1817354863 @@ -1121243,17 +1126957,17 @@ RectTransform: m_GameObject: {fileID: 1817354863} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1826560988} m_Father: {fileID: 1011349446} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1817641831 GameObject: m_ObjectHideFlags: 0 @@ -1121286,7 +1127000,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1817836733 @@ -1121312,16 +1127026,16 @@ RectTransform: m_GameObject: {fileID: 1817836733} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1696158610} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1817849954 GameObject: m_ObjectHideFlags: 0 @@ -1121354,7 +1127068,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1817958408 @@ -1121802,7 +1127516,7 @@ RectTransform: m_GameObject: {fileID: 1819587914} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 459763356} - {fileID: 1456510063} @@ -1121815,11 +1127529,11 @@ RectTransform: m_Father: {fileID: 1791966574} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1819648021 GameObject: m_ObjectHideFlags: 0 @@ -1121853,7 +1127567,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1819648023 @@ -1122539,7 +1128253,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1821041568 @@ -1122578,8 +1128292,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -60.34951} - m_SizeDelta: {x: 84.135925, y: 13.087378} + m_AnchoredPosition: {x: 0, y: -64} + m_SizeDelta: {x: 86, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &1821041570 MonoBehaviour: @@ -1122789,11 +1128503,11 @@ RectTransform: m_Father: {fileID: 1296083102} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1822321057 GameObject: m_ObjectHideFlags: 0 @@ -1123106,7 +1128820,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1823451939 @@ -1123212,6 +1128926,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1823763016 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1823763017} + - component: {fileID: 1823763019} + - component: {fileID: 1823763018} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1823763017 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1823763016} + 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: 1882731370} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 70, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1823763018 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1823763016} + 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.31764707, g: 0.3019608, b: 0.3019608, 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "1/2\u7684\u6307\u6570" +--- !u!222 &1823763019 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1823763016} --- !u!1 &1823875153 GameObject: m_ObjectHideFlags: 0 @@ -1123604,7 +1129392,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 251.08337, y: 74.42857} + m_AnchoredPosition: {x: 251.08337, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1825587033 @@ -1124601,7 +1130389,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1828470893 @@ -1124636,7 +1130424,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1828958356 @@ -1124881,7 +1130669,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1829927225 @@ -1124916,7 +1130704,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1830024009 @@ -1125087,7 +1130875,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1830191926 @@ -1125344,7 +1131132,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1831202094 @@ -1125705,7 +1131493,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1831877034 @@ -1125773,7 +1131561,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1832010295 @@ -1126089,17 +1131877,17 @@ RectTransform: m_GameObject: {fileID: 1832845062} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1111874757} m_Father: {fileID: 87068265} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1833005660 GameObject: m_ObjectHideFlags: 0 @@ -1126934,9 +1132722,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -608} + m_AnchoredPosition: {x: 4, y: -308} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1835109744 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1126958,6 +1132746,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1127393,8 +1133183,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -1128520,8 +1134310,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -1130476,7 +1136266,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1836220157 @@ -1130511,7 +1136301,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1836220159 @@ -1130788,7 +1136578,7 @@ RectTransform: m_GameObject: {fileID: 1836895763} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 404126697} - {fileID: 1239717405} @@ -1130800,9 +1136590,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1837004235 GameObject: m_ObjectHideFlags: 0 @@ -1131080,7 +1136870,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -156.83817, y: -52.303825} + m_AnchoredPosition: {x: -156.83817, y: -52.303833} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1837933532 @@ -1131399,7 +1137189,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1839518171 @@ -1131650,7 +1137440,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1839920578 @@ -1131823,7 +1137613,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1840552984 @@ -1131858,7 +1137648,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1840582333 @@ -1131893,7 +1137683,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1840871830 @@ -1132528,7 +1138318,7 @@ RectTransform: m_GameObject: {fileID: 1842856979} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1811814843} - {fileID: 1468509435} @@ -1132537,9 +1138327,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1842895477 GameObject: m_ObjectHideFlags: 0 @@ -1132646,7 +1138436,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1842943046 @@ -1132756,7 +1138546,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1842957813 @@ -1133105,7 +1138895,7 @@ RectTransform: m_GameObject: {fileID: 1844466821} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1128003316} m_RootOrder: 1 @@ -1133147,7 +1138937,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1845719916 @@ -1134065,7 +1139855,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1848579964 @@ -1135046,7 +1140836,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1852259299 @@ -1135217,7 +1141007,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1853106614 @@ -1135252,7 +1141042,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1853125261 @@ -1136188,7 +1141978,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1855300375 @@ -1136581,7 +1142371,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1857076813 @@ -1136827,11 +1142617,11 @@ RectTransform: m_Father: {fileID: 625650502} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1858295575 GameObject: m_ObjectHideFlags: 0 @@ -1137074,7 +1142864,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1859230251 @@ -1137292,7 +1143082,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1859866744 @@ -1137401,7 +1143191,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1860143003 @@ -1137613,7 +1143403,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1861285676 @@ -1137831,7 +1143621,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1861776440 @@ -1138120,9 +1143910,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1862716676 GameObject: m_ObjectHideFlags: 0 @@ -1138156,11 +1143946,11 @@ RectTransform: m_Father: {fileID: 1737585331} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1863291986 GameObject: m_ObjectHideFlags: 0 @@ -1138438,7 +1144228,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:1... + m_Text: 09:0... --- !u!222 &1864548311 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1138798,7 +1144588,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1865713272 @@ -1138917,9 +1144707,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1026} + m_AnchoredPosition: {x: 4, y: -688} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1865847026 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1138941,6 +1144731,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1140986,8 +1146778,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 0 - m_CurrDetailProgress: 50.7 - m_DestDetailProgress: 554.7 + m_CurrDetailProgress: 150.7 + m_DestDetailProgress: 654.7 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -1143128,7 +1148920,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -38.725388, y: 59.102844} + m_AnchoredPosition: {x: -38.725388, y: 59.10285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1866472704 @@ -1143434,7 +1149226,7 @@ RectTransform: m_GameObject: {fileID: 1867603497} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 577602930} - {fileID: 371917106} @@ -1143453,11 +1149245,11 @@ RectTransform: m_Father: {fileID: 147405615} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1867604365 GameObject: m_ObjectHideFlags: 0 @@ -1143490,7 +1149282,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1867604367 @@ -1143575,9 +1149367,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -342} + m_AnchoredPosition: {x: 4, y: -4} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1867673942 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1143616,6 +1149408,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1144073,8 +1149867,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 0 - m_CurrDetailProgress: 127.4 - m_DestDetailProgress: 506.6 + m_CurrDetailProgress: 227.4 + m_DestDetailProgress: 606.6 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -1146762,7 +1152556,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1869997595 @@ -1147439,7 +1153233,7 @@ RectTransform: m_GameObject: {fileID: 1871957889} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1959056604} - {fileID: 848593736} @@ -1147448,7 +1153242,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1872000482 @@ -1149222,7 +1155016,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1876095460 @@ -1149325,9 +1155119,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1876589353 GameObject: m_ObjectHideFlags: 0 @@ -1149747,7 +1155541,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1878100386 @@ -1151311,7 +1157105,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 62.13592, y: 17.087378} + m_SizeDelta: {x: 64, y: 18} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1881740791 MonoBehaviour: @@ -1151606,7 +1157400,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1882485244 @@ -1151712,6 +1157506,75 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1882731369 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1882731370} + - component: {fileID: 1882731372} + - component: {fileID: 1882731371} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1882731370 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1882731369} + 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: + - {fileID: 1823763017} + m_Father: {fileID: 1682926797} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 22, y: 0} + m_SizeDelta: {x: 70, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1882731371 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1882731369} + 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, g: 0, b: 0, a: 0} + 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 &1882731372 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1882731369} --- !u!1 &1883381769 GameObject: m_ObjectHideFlags: 0 @@ -1151962,7 +1157825,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1883947091 @@ -1152327,7 +1158190,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1884917328 @@ -1152430,7 +1158293,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1885378514 @@ -1152456,7 +1158319,7 @@ RectTransform: m_GameObject: {fileID: 1885378514} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 1236886715} - {fileID: 1299043878} @@ -1152938,7 +1158801,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1886938836 @@ -1153042,7 +1158905,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1887008519 @@ -1153548,6 +1159411,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -1153984,7 +1160015,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 112.30002, y: -45.325676} + m_AnchoredPosition: {x: 112.30002, y: -45.32567} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1890225739 @@ -1154019,7 +1160050,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1890225741 @@ -1154323,7 +1160354,7 @@ RectTransform: m_GameObject: {fileID: 1891346998} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 793203285} - {fileID: 1947663146} @@ -1154502,7 +1160533,7 @@ RectTransform: m_GameObject: {fileID: 1891611553} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1344412015} - {fileID: 937370537} @@ -1155184,7 +1161215,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1893485841 @@ -1155258,7 +1161289,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1893877020 @@ -1155293,7 +1161324,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1893957670 @@ -1156182,7 +1162213,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1896015717 @@ -1156217,7 +1162248,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1896035313 @@ -1158084,9 +1164115,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1900028650 GameObject: m_ObjectHideFlags: 0 @@ -1158469,7 +1164500,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1901493993 @@ -1158708,7 +1164739,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1901860469 @@ -1159498,7 +1165529,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1903198679 @@ -1159882,7 +1165913,7 @@ RectTransform: m_GameObject: {fileID: 1904267556} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 139454356} - {fileID: 756100546} @@ -1159894,9 +1165925,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1904468593 GameObject: m_ObjectHideFlags: 0 @@ -1160099,14 +1166130,14 @@ RectTransform: m_GameObject: {fileID: 1904879177} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1401881374} 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: 42, y: 30} + m_AnchoredPosition: {x: 142, y: 130} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1904879179 @@ -1160141,7 +1166172,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 0 + m_Text: --- !u!222 &1904879180 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1160206,7 +1166237,7 @@ RectTransform: m_GameObject: {fileID: 1905385351} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2022635946} - {fileID: 495665919} @@ -1160215,9 +1166246,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1905388178 GameObject: m_ObjectHideFlags: 0 @@ -1160250,7 +1166281,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1905401398 @@ -1160320,7 +1166351,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1905799350 @@ -1161419,7 +1167450,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1909633516 @@ -1161489,7 +1167520,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1909716063 @@ -1161524,7 +1167555,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1910001660 @@ -1161633,11 +1167664,11 @@ RectTransform: m_Father: {fileID: 1693045525} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1910495854 GameObject: m_ObjectHideFlags: 0 @@ -1161830,9 +1167861,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -940} + m_AnchoredPosition: {x: 2, y: -630} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1910686492 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1161854,6 +1167885,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 310 + m_ChartX: 0 + m_ChartY: -310 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1163100,7 +1169133,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1912372035 @@ -1163135,7 +1169168,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1912441055 @@ -1163319,7 +1169352,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1912982986 @@ -1163815,7 +1169848,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -62.299973, y: 102.62402} + m_AnchoredPosition: {x: -62.299973, y: 102.62403} m_SizeDelta: {x: 36, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1913985793 @@ -1163889,7 +1169922,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1914673620 @@ -1163998,7 +1170031,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1914855721 @@ -1164467,7 +1170500,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1915809969 @@ -1164712,7 +1170745,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1916149585 @@ -1165260,7 +1171293,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1916743611 @@ -1165573,7 +1171606,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1917399766 @@ -1166586,11 +1172619,11 @@ RectTransform: m_Father: {fileID: 585854007} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1919625648 GameObject: m_ObjectHideFlags: 0 @@ -1166697,7 +1172730,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1920925156 @@ -1166944,7 +1172977,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1921500053 @@ -1166979,7 +1173012,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1921600356 @@ -1167448,7 +1173481,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -185.58333, y: -74.14286} + m_AnchoredPosition: {x: -185.58333, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1923450785 @@ -1167493,9 +1173526,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -2432} + m_AnchoredPosition: {x: 4, y: -2132} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1923450787 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1167517,6 +1173550,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1167524,7 +1173559,7 @@ MonoBehaviour: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} m_BackgroundColor: serializedVersion: 2 - rgba: 4294967295 + rgba: 4279900807 m_TitleTextColor: serializedVersion: 2 rgba: 4283256145 @@ -1167602,7 +1173637,7 @@ MonoBehaviour: m_CustomFont: {fileID: 0} m_CustomBackgroundColor: serializedVersion: 2 - rgba: 0 + rgba: 4294967295 m_CustomTitleTextColor: serializedVersion: 2 rgba: 0 @@ -1167954,8 +1173989,8 @@ MonoBehaviour: m_DataChangeEnable: 1 m_DataChangeDuration: 500 m_ActualDuration: 999 - m_CurrDetailProgress: 86 - m_DestDetailProgress: 518 + m_CurrDetailProgress: 186 + m_DestDetailProgress: 618 m_LineArrow: m_JsonData: m_DataFromJson: 0 @@ -1170731,7 +1176766,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1924172951 @@ -1171044,7 +1177079,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1925213840 @@ -1171079,7 +1177114,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1925213842 @@ -1171438,14 +1177473,14 @@ RectTransform: m_GameObject: {fileID: 1926190267} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 946620814} 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: 42, y: 288} + m_AnchoredPosition: {x: 142, y: 388} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1926190269 @@ -1171480,7 +1177515,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 12.2 + m_Text: --- !u!222 &1926190270 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1171662,11 +1177697,11 @@ RectTransform: m_Father: {fileID: 1503900334} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1927191528 GameObject: m_ObjectHideFlags: 0 @@ -1171836,7 +1177871,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1927609333 @@ -1172800,7 +1178835,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1929390553 @@ -1173117,7 +1179152,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1930066802 @@ -1173655,7 +1179690,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1932517358 @@ -1174086,9 +1180121,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1933818316 GameObject: m_ObjectHideFlags: 0 @@ -1174445,7 +1180480,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1934843275 @@ -1174723,7 +1180758,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1935426083 @@ -1174758,7 +1180793,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1935612740 @@ -1175136,7 +1181171,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1936196947 @@ -1175673,7 +1181708,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -62, y: 19.791336} + m_AnchoredPosition: {x: -62, y: 19.791351} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1937620904 @@ -1176092,7 +1182127,7 @@ RectTransform: m_GameObject: {fileID: 1938338334} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2089491276} - {fileID: 1936196946} @@ -1176103,9 +1182138,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1938462618 GameObject: m_ObjectHideFlags: 0 @@ -1176673,7 +1182708,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:11:02 + m_Text: 09:04:05 --- !u!222 &1939110248 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1177623,7 +1183658,7 @@ RectTransform: m_GameObject: {fileID: 1942016923} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 302039197} - {fileID: 1432787176} @@ -1177638,11 +1183673,11 @@ RectTransform: m_Father: {fileID: 544069994} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1942461320 GameObject: m_ObjectHideFlags: 0 @@ -1177769,7 +1183804,7 @@ RectTransform: m_GameObject: {fileID: 1942480270} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 1011349446} m_RootOrder: 1 @@ -1177920,7 +1183955,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1943107837 @@ -1177953,11 +1183988,11 @@ RectTransform: m_Father: {fileID: 1503900334} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1943325552 GameObject: m_ObjectHideFlags: 0 @@ -1178191,7 +1184226,7 @@ RectTransform: m_GameObject: {fileID: 1943673396} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1323483867} - {fileID: 1490340310} @@ -1178204,9 +1184239,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1943801687 GameObject: m_ObjectHideFlags: 0 @@ -1178387,7 +1184422,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1944810819 @@ -1178963,7 +1184998,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1946481628 @@ -1179555,7 +1185590,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 152.62988, y: -127.226234} + m_AnchoredPosition: {x: 152.62988, y: -127.22623} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1947856963 @@ -1180105,9 +1186140,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1949463642 GameObject: m_ObjectHideFlags: 0 @@ -1180619,7 +1186654,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1951498112 @@ -1180763,7 +1186798,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1952247849 @@ -1180946,7 +1186981,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1952480052 @@ -1181884,7 +1187919,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1954989049 @@ -1181987,7 +1188022,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1955370653 @@ -1182306,11 +1188341,11 @@ RectTransform: m_Father: {fileID: 472702066} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1956048946 GameObject: m_ObjectHideFlags: 0 @@ -1182697,7 +1188732,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1957201260 @@ -1183621,7 +1189656,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1958630613 @@ -1183792,7 +1189827,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1959210923 @@ -1184006,6 +1190041,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1960240920 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1960240921} + - component: {fileID: 1960240923} + - component: {fileID: 1960240922} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1960240921 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1960240920} + 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: 1301364339} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 56.666668, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1960240922 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1960240920} + 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.31764707, g: 0.3019608, b: 0.3019608, 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "3\u7684\u6307\u6570" +--- !u!222 &1960240923 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1960240920} --- !u!1 &1960623058 GameObject: m_ObjectHideFlags: 0 @@ -1185192,7 +1191301,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -87.29999, y: -57.15} + m_AnchoredPosition: {x: -87.29999, y: -57.149994} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1963034883 @@ -1185365,7 +1191474,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1964582395 @@ -1186179,7 +1192288,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -87.29999, y: -9.300003} + m_AnchoredPosition: {x: -87.29999, y: -9.299988} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1966954440 @@ -1186415,7 +1192524,7 @@ RectTransform: m_GameObject: {fileID: 1967418516} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 488173814} - {fileID: 1853125262} @@ -1186427,9 +1192536,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1967738141 GameObject: m_ObjectHideFlags: 0 @@ -1186956,7 +1193065,7 @@ RectTransform: m_GameObject: {fileID: 1969964137} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 698721560} - {fileID: 2036487662} @@ -1186968,9 +1193077,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1969965029 GameObject: m_ObjectHideFlags: 0 @@ -1189208,11 +1195317,11 @@ RectTransform: m_Father: {fileID: 1835109743} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1976931188 GameObject: m_ObjectHideFlags: 0 @@ -1189245,7 +1195354,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1976950363 @@ -1189281,11 +1195390,11 @@ RectTransform: m_Father: {fileID: 575425244} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1976963877 GameObject: m_ObjectHideFlags: 0 @@ -1189386,7 +1195495,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1977123323 @@ -1189637,7 +1195746,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1977926976 @@ -1190283,9 +1196392,77 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1979306637 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1979306638} + - component: {fileID: 1979306640} + - component: {fileID: 1979306639} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1979306638 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1979306637} + 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: 1783622131} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 10} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1979306639 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1979306637} + 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.18431373, g: 0.27058825, b: 0.32941177, 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 &1979306640 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1979306637} --- !u!1 &1979336718 GameObject: m_ObjectHideFlags: 0 @@ -1190391,11 +1196568,11 @@ RectTransform: m_Father: {fileID: 358352446} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1979560136 GameObject: m_ObjectHideFlags: 0 @@ -1190429,7 +1196606,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1979560138 @@ -1190498,7 +1196675,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1979816972 @@ -1190939,7 +1197116,7 @@ RectTransform: m_GameObject: {fileID: 1981448266} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2087123801} - {fileID: 213629826} @@ -1190951,9 +1197128,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1981520493 GameObject: m_ObjectHideFlags: 0 @@ -1191420,7 +1197597,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1982711364 @@ -1191671,7 +1197848,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1983798578 @@ -1192144,9 +1198321,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -302} + m_AnchoredPosition: {x: 2, y: -2} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1984264383 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1192168,6 +1198345,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1192900,7 +1199079,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1984747740 @@ -1193188,7 +1199367,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1985320544 @@ -1193221,11 +1199400,11 @@ RectTransform: m_Father: {fileID: 1466214550} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &1985356427 GameObject: m_ObjectHideFlags: 0 @@ -1193480,7 +1199659,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1985934226 @@ -1193515,7 +1199694,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1986241773 @@ -1193807,7 +1199986,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1986833635 @@ -1193852,9 +1200031,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -2128} + m_AnchoredPosition: {x: 4, y: -1828} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &1986833637 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1193876,6 +1200055,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1196085,7 +1202266,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 338} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1989017631 @@ -1196543,7 +1202724,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &1990828241 @@ -1197255,7 +1203436,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1992496918 @@ -1197480,6 +1203661,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1992809422} +--- !u!1 &1992810743 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1992810744} + - component: {fileID: 1992810746} + - component: {fileID: 1992810745} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1992810744 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1992810743} + 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: 1674745765} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 10} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1992810745 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1992810743} + 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.7607843, g: 0.20784314, b: 0.19215687, 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 &1992810746 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1992810743} --- !u!1 &1992816235 GameObject: m_ObjectHideFlags: 0 @@ -1197722,7 +1203971,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1993541217 @@ -1198047,7 +1204296,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1994149748 @@ -1198083,7 +1204332,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1994149750 @@ -1198727,7 +1204976,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 427.42, y: 21.671013} + m_AnchoredPosition: {x: 427.42, y: 21.67102} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &1995358891 @@ -1199079,7 +1205328,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1996028637 @@ -1199970,7 +1206219,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1997952646 @@ -1201220,7 +1207469,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2003078177 @@ -1201364,7 +1207613,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -134, y: 45.699997} + m_AnchoredPosition: {x: -134, y: 45.700012} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2003337840 @@ -1201801,11 +1208050,11 @@ RectTransform: m_Father: {fileID: 627765467} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2004373547 GameObject: m_ObjectHideFlags: 0 @@ -1201941,7 +1208190,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2005597646 @@ -1201976,7 +1208225,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &2005597648 @@ -1202426,11 +1208675,11 @@ RectTransform: m_Father: {fileID: 408536198} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2006751221 GameObject: m_ObjectHideFlags: 0 @@ -1202537,7 +1208786,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2006813478 @@ -1203033,7 +1209282,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2007387436 @@ -1203677,7 +1209926,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &2008330780 @@ -1203893,7 +1210142,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2008888088 @@ -1204064,7 +1210313,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2009049190 @@ -1204286,7 +1210535,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2009790397 @@ -1204755,7 +1211004,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2012612023 @@ -1205041,7 +1211290,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2013686748 @@ -1205333,7 +1211582,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2014035136 @@ -1205511,7 +1211760,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &2014156687 @@ -1205717,7 +1211966,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2015044593 @@ -1206065,7 +1212314,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2015550278 @@ -1206355,7 +1212604,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2016887632 @@ -1206960,7 +1213209,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2018827221 @@ -1206995,7 +1213244,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2019252839 @@ -1207326,7 +1213575,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2019807661 @@ -1207429,7 +1213678,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &2019826936 @@ -1207989,7 +1214238,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2021736498 @@ -1208234,7 +1214483,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2022079279 @@ -1208304,7 +1214553,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &2022635947 @@ -1208452,7 +1214701,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2022952117 @@ -1209139,7 +1215388,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &2024745594 @@ -1209355,7 +1215604,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2025530895 @@ -1209722,11 +1215971,11 @@ RectTransform: m_Father: {fileID: 111780571} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2026956029 GameObject: m_ObjectHideFlags: 0 @@ -1209759,7 +1216008,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2026978776 @@ -1209863,7 +1216112,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &2026986693 @@ -1210608,7 +1216857,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2028745405 @@ -1211121,7 +1217370,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &2030248622 @@ -1211291,7 +1217540,7 @@ RectTransform: m_GameObject: {fileID: 2031098933} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1808349807} - {fileID: 866645292} @@ -1211326,7 +1217575,7 @@ RectTransform: m_GameObject: {fileID: 2031251353} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1237424365} - {fileID: 1107204346} @@ -1211370,7 +1217619,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2031628789 @@ -1211610,7 +1217859,7 @@ RectTransform: m_GameObject: {fileID: 2032607309} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1802421110} m_Father: {fileID: 899774759} @@ -1211754,7 +1218003,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2033047294 @@ -1211970,7 +1218219,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -251.08333, y: -74.14286} + m_AnchoredPosition: {x: -251.08333, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2033451847 @@ -1212108,7 +1218357,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2033960255 @@ -1213327,7 +1219576,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2035824910 @@ -1213868,7 +1220117,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2037177149 @@ -1214199,7 +1220448,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2037840537 @@ -1214234,7 +1220483,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2037915767 @@ -1214884,7 +1221133,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2039534634 @@ -1215096,7 +1221345,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2039906423 @@ -1215171,7 +1221420,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &2040183559 @@ -1215694,7 +1221943,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2041279718 @@ -1215939,7 +1222188,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2041771802 @@ -1216419,7 +1222668,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &2043136639 @@ -1216667,9 +1222916,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2043845520 GameObject: m_ObjectHideFlags: 0 @@ -1216737,7 +1222986,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: -0.2 + m_Text: -0.5 --- !u!222 &2043845523 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1217490,7 +1223739,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2045819571 @@ -1217593,7 +1223842,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -10.9166565, y: 74.42857} + m_AnchoredPosition: {x: -10.9166565, y: 74.428566} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2045928298 @@ -1218626,7 +1224875,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2048696300 @@ -1218700,7 +1224949,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2049055354 @@ -1218844,7 +1225093,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 12.5, y: -64.3} + m_AnchoredPosition: {x: 12.5, y: -64.29999} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2049415515 @@ -1219165,7 +1225414,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2050469692 @@ -1220122,7 +1226371,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2053446435 @@ -1220305,7 +1226554,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2053893583 @@ -1220581,7 +1226830,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:1... + m_Text: 09:0... --- !u!222 &2054498300 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1220947,7 +1227196,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &2055477911 @@ -1221259,9 +1227508,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 590, y: -626} + m_AnchoredPosition: {x: 590, y: -316} m_SizeDelta: {x: 584, y: 310} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &2057043786 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1221283,6 +1227532,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 310 + m_ChartX: 0 + m_ChartY: -310 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1223702,7 +1229953,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 342, y: 3.5199966} + m_AnchoredPosition: {x: 342, y: 3.519989} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &2058259770 @@ -1223997,9 +1230248,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -606} + m_AnchoredPosition: {x: 2, y: -306} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &2058807316 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1224021,6 +1230272,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1227489,7 +1233742,7 @@ RectTransform: m_GameObject: {fileID: 2062480084} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1334989239} - {fileID: 2141664810} @@ -1227503,9 +1233756,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2062818851 GameObject: m_ObjectHideFlags: 0 @@ -1227612,7 +1233865,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2063151508 @@ -1227682,7 +1233935,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2063457483 @@ -1227787,7 +1234040,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2064442486 @@ -1227822,7 +1234075,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 42, y: 45.714287} + m_AnchoredPosition: {x: 42, y: 45.71428} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 1, y: 0.5} --- !u!114 &2064442488 @@ -1228267,7 +1234520,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &2065631124 @@ -1228766,11 +1235019,11 @@ RectTransform: m_Father: {fileID: 728372040} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2066838816 GameObject: m_ObjectHideFlags: 0 @@ -1229231,7 +1235484,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2067680781 @@ -1230030,7 +1236283,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2069294475 @@ -1230486,7 +1236739,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2070110955 @@ -1230595,9 +1236848,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -684} + m_AnchoredPosition: {x: 4, y: -346} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &2070144965 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1230619,6 +1236872,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 338 + m_ChartX: 0 + m_ChartY: -338 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1231621,18 +1237876,18 @@ RectTransform: m_GameObject: {fileID: 2070861674} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1506567220} - {fileID: 1070849674} m_Father: {fileID: 137406608} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2071151755 GameObject: m_ObjectHideFlags: 0 @@ -1231724,7 +1237979,7 @@ RectTransform: m_GameObject: {fileID: 2071185306} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - {fileID: 135183022} - {fileID: 1164222996} @@ -1231732,11 +1237987,11 @@ RectTransform: m_Father: {fileID: 1304904922} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2071600840 GameObject: m_ObjectHideFlags: 0 @@ -1232133,7 +1238388,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2072363823 @@ -1232169,7 +1238424,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &2072363825 @@ -1232733,7 +1238988,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2073446933 @@ -1232768,7 +1239023,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2073470124 @@ -1233377,11 +1239632,11 @@ RectTransform: m_Father: {fileID: 2058807315} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2075590551 GameObject: m_ObjectHideFlags: 0 @@ -1233414,7 +1239669,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2075971401 @@ -1233484,7 +1239739,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2077079352 @@ -1233578,7 +1239833,7 @@ RectTransform: m_GameObject: {fileID: 2077218600} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2035649631} - {fileID: 1378445830} @@ -1233590,9 +1239845,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2077290977 GameObject: m_ObjectHideFlags: 0 @@ -1234057,7 +1240312,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2078149161 @@ -1234118,7 +1240373,7 @@ RectTransform: m_GameObject: {fileID: 2078641879} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1651184711} - {fileID: 165722840} @@ -1234136,9 +1240391,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2078763021 GameObject: m_ObjectHideFlags: 0 @@ -1234419,7 +1240674,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &2079954648 @@ -1234913,7 +1241168,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2080932079 @@ -1235051,7 +1241306,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 02:11:06 + m_Text: 09:04:11 --- !u!222 &2081276445 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1235455,7 +1241710,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 0.5} m_AnchorMax: {x: 0, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 62.13592, y: 17.087378} + m_SizeDelta: {x: 64, y: 18} m_Pivot: {x: 0, y: 0.5} --- !u!114 &2082437874 MonoBehaviour: @@ -1237314,9 +1243569,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2086133033 GameObject: m_ObjectHideFlags: 0 @@ -1237349,7 +1243604,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2086854650 @@ -1237457,9 +1243712,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 788, y: -302} + m_AnchoredPosition: {x: 788, y: -2} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &2086937788 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1237481,6 +1243736,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 389 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1239216,7 +1245473,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2087871077 @@ -1240316,7 +1246573,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &2089491277 @@ -1240527,11 +1246784,11 @@ RectTransform: m_Father: {fileID: 1503900334} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2090354551 GameObject: m_ObjectHideFlags: 0 @@ -1240638,7 +1246895,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 10, y: -89.96667} + m_AnchoredPosition: {x: 10, y: -89.966675} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2090993217 @@ -1241813,7 +1248070,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2095863519 @@ -1242156,11 +1248413,11 @@ RectTransform: m_Father: {fileID: 627765467} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2097249331 GameObject: m_ObjectHideFlags: 0 @@ -1242520,7 +1248777,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2098515663 @@ -1242637,9 +1248894,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2098977464 GameObject: m_ObjectHideFlags: 0 @@ -1243248,7 +1249505,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2100870695 @@ -1243609,7 +1249866,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 1, y: 0.5} --- !u!114 &2102134031 @@ -1244070,7 +1250327,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 200, y: 20} m_Pivot: {x: 0, y: 0.5} --- !u!114 &2103025731 @@ -1245459,7 +1251716,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2107012113 @@ -1245733,7 +1251990,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2108088663 @@ -1245769,7 +1252026,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &2108088665 @@ -1246153,7 +1252410,7 @@ RectTransform: m_GameObject: {fileID: 2109220467} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1160070519} m_RootOrder: 1 @@ -1246616,7 +1252873,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 184.05286, y: -74.00832} + m_AnchoredPosition: {x: 184.05286, y: -74.00833} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2110811844 @@ -1246760,7 +1253017,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2111371537 @@ -1246931,7 +1253188,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2112050500 @@ -1247176,7 +1253433,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2113064568 @@ -1247278,7 +1253535,7 @@ RectTransform: m_GameObject: {fileID: 2113156663} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1911925176} m_Father: {fileID: 957518023} @@ -1247889,7 +1254146,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2114021047 @@ -1248278,7 +1254535,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 118.20346, y: 181.09988} + m_AnchoredPosition: {x: 130.94617, y: -133.54344} m_SizeDelta: {x: 44.666668, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2114995510 @@ -1248638,7 +1254895,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2115821942 @@ -1249642,7 +1255899,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2117825084 @@ -1249751,7 +1256008,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2117896765 @@ -1250575,7 +1256832,7 @@ RectTransform: m_GameObject: {fileID: 2119814594} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1483756566} - {fileID: 573893022} @@ -1250588,9 +1256845,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2119951014 GameObject: m_ObjectHideFlags: 0 @@ -1250623,7 +1256880,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2120110956 @@ -1250806,7 +1257063,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2120419970 @@ -1250918,9 +1257175,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -338} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2120531410 GameObject: m_ObjectHideFlags: 0 @@ -1250953,7 +1257210,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 50, y: 30} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2120987316 @@ -1251162,11 +1257419,11 @@ RectTransform: m_Father: {fileID: 2058807315} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2121475230 GameObject: m_ObjectHideFlags: 0 @@ -1251200,11 +1257457,11 @@ RectTransform: m_Father: {fileID: 358352446} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2121571049 GameObject: m_ObjectHideFlags: 0 @@ -1251237,7 +1257494,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2121571051 @@ -1251385,7 +1257642,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -586.56, y: -169} + m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2122005514 @@ -1252161,7 +1258418,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2123913149 @@ -1252527,7 +1258784,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2125735638 @@ -1252553,7 +1258810,7 @@ RectTransform: m_GameObject: {fileID: 2125735638} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2003881036} - {fileID: 798506005} @@ -1253510,7 +1259767,7 @@ RectTransform: m_GameObject: {fileID: 2128859104} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 2027179073} - {fileID: 1987002158} @@ -1253522,9 +1259779,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2128986268 GameObject: m_ObjectHideFlags: 0 @@ -1253557,7 +1259814,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -194.5, y: -150} + m_AnchoredPosition: {x: 0, y: -15} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2128986270 @@ -1253865,6 +1260122,174 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -1254518,7 +1260943,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2131791586 @@ -1254563,9 +1260988,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -912} + m_AnchoredPosition: {x: 592, y: -612} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!114 &2131791588 MonoBehaviour: m_ObjectHideFlags: 0 @@ -1254587,6 +1261012,8 @@ MonoBehaviour: Version=1.0.0.0, Culture=neutral, PublicKeyToken=null m_ChartWidth: 584 m_ChartHeight: 300 + m_ChartX: 0 + m_ChartY: -300 m_ThemeInfo: m_JsonData: m_DataFromJson: 0 @@ -1257555,7 +1263982,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -62, y: -10.300003} + m_AnchoredPosition: {x: -62, y: -10.299988} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2132619706 @@ -1258268,11 +1264695,11 @@ RectTransform: m_Father: {fileID: 1520897807} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2134179979 GameObject: m_ObjectHideFlags: 0 @@ -1258869,7 +1265296,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2136326899 @@ -1259191,11 +1265618,11 @@ RectTransform: m_Father: {fileID: 1481638111} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2137152468 GameObject: m_ObjectHideFlags: 0 @@ -1260547,7 +1266974,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 12} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2140913710 @@ -1261305,7 +1267732,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: 300} m_SizeDelta: {x: 100, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &2142021971 @@ -1261370,11 +1267797,11 @@ RectTransform: m_Father: {fileID: 362412429} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2142287986 GameObject: m_ObjectHideFlags: 0 @@ -1261864,7 +1268291,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2143188636 @@ -1262446,7 +1268873,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2144317949 @@ -1262481,7 +1268908,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -169} + m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2144420299 @@ -1262585,7 +1269012,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 100, y: 100} m_Pivot: {x: 0, y: 1} --- !u!114 &2144436055 @@ -1262719,11 +1269146,11 @@ RectTransform: m_Father: {fileID: 988304553} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2144782963 GameObject: m_ObjectHideFlags: 0 @@ -1263044,7 +1269471,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2145314377 @@ -1263072,7 +1269499,7 @@ RectTransform: m_GameObject: {fileID: 2145314377} 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_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 850421577} m_Father: {fileID: 957518023} @@ -1263370,7 +1269797,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -150} + m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2146794075 @@ -1263553,7 +1269980,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -292, y: -155} + m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2146997645 @@ -1263623,9 +1270050,9 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -300} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} - m_Pivot: {x: 0, y: 0} + m_Pivot: {x: 0, y: 1} --- !u!1 &2147077923 GameObject: m_ObjectHideFlags: 0