diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index ac3a2181..8b460da3 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -1,6 +1,7 @@ # 更新日志 +* (2020.03.21) 增加`BarChart`和`HeatmapChart`可通过`ignore`参数设置忽略数据的支持 * (2020.03.21) 增加`ItemStyle`的`tooltipFormatter`参数可单独配置`Serie`的`Tooltip`显示 * (2020.03.20) 修复`X Axis 1`和`Y Axis 1`配置变更时不会自动刷新的问题 * (2020.03.20) 增加`AxisTick`的`width`参数可单独设置坐标轴刻度的宽度 diff --git a/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs index 2b3168ed..b0c4184a 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs @@ -172,6 +172,10 @@ namespace XCharts drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_Clip); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_Ignore); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_IgnoreValue); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_ItemStyle); drawRect.y += EditorGUI.GetPropertyHeight(m_ItemStyle); EditorGUI.PropertyField(drawRect, m_Label); @@ -245,6 +249,10 @@ namespace XCharts drawRect.y += EditorGUI.GetPropertyHeight(m_Emphasis); break; case SerieType.Heatmap: + EditorGUI.PropertyField(drawRect, m_Ignore); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_IgnoreValue); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_ItemStyle); drawRect.y += EditorGUI.GetPropertyHeight(m_ItemStyle); EditorGUI.PropertyField(drawRect, m_Label); @@ -474,7 +482,7 @@ namespace XCharts height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Animation")); break; case SerieType.Bar: - height += 16 * EditorGUIUtility.singleLineHeight + 15 * EditorGUIUtility.standardVerticalSpacing; + height += 18 * EditorGUIUtility.singleLineHeight + 17 * EditorGUIUtility.standardVerticalSpacing; height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_ItemStyle")); height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Label")); height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Emphasis")); @@ -514,7 +522,7 @@ namespace XCharts height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Animation")); break; case SerieType.Heatmap: - height += 4 * EditorGUIUtility.singleLineHeight + 3 * EditorGUIUtility.standardVerticalSpacing; + height += 6 * EditorGUIUtility.singleLineHeight + 5 * EditorGUIUtility.standardVerticalSpacing; height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_ItemStyle")); height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Label")); height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Emphasis")); diff --git a/Assets/XCharts/Runtime/Component/Main/Serie.cs b/Assets/XCharts/Runtime/Component/Main/Serie.cs index ac13960b..3b91c5da 100644 --- a/Assets/XCharts/Runtime/Component/Main/Serie.cs +++ b/Assets/XCharts/Runtime/Component/Main/Serie.cs @@ -1516,12 +1516,25 @@ namespace XCharts return false; } - public bool IsIngoreValue(float value) + public bool IsIgnoreIndex(int index, int dimension) + { + if (m_Ignore) + { + var serieData = GetSerieData(index); + if (serieData != null) + { + return IsIgnoreValue(serieData.GetData(dimension)); + } + } + return false; + } + + public bool IsIgnoreValue(float value) { return m_Ignore && Mathf.Approximately(value, m_IgnoreValue); } - public bool IsIngorePoint(int index) + public bool IsIgnorePoint(int index) { if (index >= 0 && index < dataPoints.Count) { diff --git a/Assets/XCharts/Runtime/Helper/TooltipHelper.cs b/Assets/XCharts/Runtime/Helper/TooltipHelper.cs index ca3ae720..c7a73614 100644 --- a/Assets/XCharts/Runtime/Helper/TooltipHelper.cs +++ b/Assets/XCharts/Runtime/Helper/TooltipHelper.cs @@ -82,7 +82,7 @@ namespace XCharts string key = serie.name; float xValue, yValue; serie.GetXYData(index, dataZoom, out xValue, out yValue); - var isIngore = serie.IsIngorePoint(index); + var isIngore = serie.IsIgnorePoint(index); if (isCartesian) { var serieData = serie.GetSerieData(index, dataZoom); @@ -97,10 +97,9 @@ namespace XCharts { var valueTxt = isIngore ? tooltip.ignoreDataDefaultContent : ChartCached.FloatToStr(yValue, 0, tooltip.forceENotation); - sb.Append("\n") - .Append("● ") - .Append(key).Append(!string.IsNullOrEmpty(key) ? " : " : "") - .Append(valueTxt); + sb.Append("● ") + .Append(key).Append(!string.IsNullOrEmpty(key) ? " : " : "") + .Append(valueTxt); } } @@ -147,15 +146,17 @@ namespace XCharts if (!serie.show) continue; var serieData = serie.GetSerieData(dataIndex, dataZoom); var itemFormatter = GetItemFormatter(tooltip, serie, serieData); - if (string.IsNullOrEmpty(itemFormatter)) - { - InitDefaultContent(ref sb, tooltip, serie, dataIndex, category, themeInfo, dataZoom, isCartesian); - continue; - } var percent = serieData.GetData(1) / serie.yTotal * 100; needCategory = needCategory || (serie.type == SerieType.Line || serie.type == SerieType.Bar); if (serie.show) { + if (string.IsNullOrEmpty(itemFormatter)) + { + if (!first) sb.Append("\n"); + InitDefaultContent(ref sb, tooltip, serie, dataIndex, category, themeInfo, dataZoom, isCartesian); + first = false; + continue; + } string content = itemFormatter; content = content.Replace("{a}", serie.name); content = content.Replace("{b}", needCategory ? category : serieData.name); diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs index 1a8f3987..b6069ce7 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs @@ -1461,12 +1461,14 @@ namespace XCharts var serieData = serie.data[j]; var pos = serie.dataPoints[j]; var serieLabel = SerieHelper.GetSerieLabel(serie, serieData); + var dimension = 1; + var isIgnore = serie.IsIgnoreIndex(j, 1); serieData.SetGameObjectPosition(serieData.labelPosition); serieData.UpdateIcon(); - if (serie.show && serieLabel.show && serieData.canShowLabel) + if (serie.show && serieLabel.show && serieData.canShowLabel && !isIgnore) { float value = 0f; - var dimension = 1; + if (serie.type == SerieType.Heatmap) { dimension = m_VisualMap.enable && m_VisualMap.dimension > 0 ? m_VisualMap.dimension - 1 : diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs index c20ed042..6e001358 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs @@ -56,6 +56,11 @@ namespace XCharts seriesHig.Add(0); } var serieData = showData[i]; + if (serie.IsIgnoreValue(serieData.GetData(1))) + { + serie.dataPoints.Add(Vector3.zero); + continue; + } var highlight = (m_Tooltip.show && m_Tooltip.IsSelected(i)) || serie.data[i].highlighted || serie.highlighted; @@ -185,6 +190,11 @@ namespace XCharts seriesHig.Add(0); } var serieData = showData[i]; + if (serie.IsIgnoreValue(serieData.GetData(1))) + { + serie.dataPoints.Add(Vector3.zero); + continue; + } var highlight = (m_Tooltip.show && m_Tooltip.IsSelected(i)) || serie.data[i].highlighted || serie.highlighted; diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs index c6898059..d4501700 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs @@ -147,6 +147,11 @@ namespace XCharts var serieData = dataList[dataIndex]; var dimension = m_VisualMap.enable && m_VisualMap.dimension > 0 ? m_VisualMap.dimension - 1 : serieData.data.Count - 1; + if (serie.IsIgnoreIndex(dataIndex, dimension)) + { + serie.dataPoints.Add(Vector3.zero); + continue; + } var value = serieData.GetCurrData(dimension, dataChangeDuration); if (serieData.IsDataChanged()) dataChanging = true; var pos = new Vector3(zeroX + (i + 0.5f) * xWidth, zeroY + (j + 0.5f) * yWidth); diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs index 9e7be274..5386a715 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs @@ -127,7 +127,7 @@ namespace XCharts { for (int j = 0; j < rate; j++) seriesHig.Add(0); } - if (serie.IsIngoreValue(showData[i].GetData(1))) + if (serie.IsIgnoreValue(showData[i].GetData(1))) { serie.dataPoints.Add(Vector3.zero); } @@ -148,7 +148,7 @@ namespace XCharts { i = maxCount - 1; seriesHig.Add(0); - if (serie.IsIngoreValue(showData[i].GetData(1))) + if (serie.IsIgnoreValue(showData[i].GetData(1))) { serie.dataPoints.Add(Vector3.zero); } @@ -181,7 +181,7 @@ namespace XCharts if (serie.minShow > 0 && serie.minShow < showData.Count) { i = serie.minShow - 1; - if (serie.IsIngoreValue(showData[i].GetData(1))) + if (serie.IsIgnoreValue(showData[i].GetData(1))) { serie.dataPoints.Add(Vector3.zero); } @@ -198,7 +198,7 @@ namespace XCharts if (serie.maxShow > 0 && serie.maxShow < showData.Count) { i = serie.maxShow; - if (serie.IsIngoreValue(showData[i].GetData(1))) + if (serie.IsIgnoreValue(showData[i].GetData(1))) { serie.dataPoints.Add(Vector3.zero); } diff --git a/Assets/XChartsDemo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity index 46f0c629..9232ddbd 100644 --- a/Assets/XChartsDemo/demo_xchart.unity +++ b/Assets/XChartsDemo/demo_xchart.unity @@ -640,7 +640,7 @@ RectTransform: m_GameObject: {fileID: 1185842} 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: 1107243629} m_RootOrder: 11 @@ -887,7 +887,7 @@ RectTransform: m_GameObject: {fileID: 2408609} 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: 2055477910} - {fileID: 2070211157} @@ -11369,6 +11369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -11414,6 +11415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -11499,6 +11501,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -11545,6 +11548,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -11606,6 +11610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -11652,6 +11657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 132 @@ -11713,6 +11719,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -11759,6 +11766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 101 @@ -11820,6 +11828,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -11866,6 +11875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 134 @@ -11927,6 +11937,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -11973,6 +11984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 90 @@ -12034,6 +12046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -12080,6 +12093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 230 @@ -12141,6 +12155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -12187,6 +12202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 210 @@ -12405,6 +12421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -12450,6 +12467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -12535,6 +12553,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -12581,6 +12600,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 220 @@ -12642,6 +12662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -12688,6 +12709,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 282 @@ -12749,6 +12771,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -12795,6 +12818,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 201 @@ -12856,6 +12880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -12902,6 +12927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 234 @@ -12963,6 +12989,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -13009,6 +13036,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 290 @@ -13070,6 +13098,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -13116,6 +13145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 430 @@ -13177,6 +13207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -13223,6 +13254,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 410 @@ -13441,6 +13473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -13486,6 +13519,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -13571,6 +13605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -13617,6 +13652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 546.12 @@ -13678,6 +13714,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -13724,6 +13761,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 452 @@ -13785,6 +13823,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -13831,6 +13870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 501 @@ -13892,6 +13932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -13938,6 +13979,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 554 @@ -13999,6 +14041,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -14045,6 +14088,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 690 @@ -14106,6 +14150,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -14152,6 +14197,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 630 @@ -14213,6 +14259,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -14259,6 +14306,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 610 @@ -14477,6 +14525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -14522,6 +14571,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -14607,6 +14657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -14653,6 +14704,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 450 @@ -14714,6 +14766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -14760,6 +14813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 432 @@ -14821,6 +14875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -14867,6 +14922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 401 @@ -14928,6 +14984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -14974,6 +15031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 454 @@ -15035,6 +15093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -15081,6 +15140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 590 @@ -15142,6 +15202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -15188,6 +15249,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 530 @@ -15249,6 +15311,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -15295,6 +15358,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 510 @@ -15369,6 +15433,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -15457,6 +15522,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -15541,6 +15607,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -15624,6 +15691,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -16748,7 +16816,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &37761823 RectTransform: m_ObjectHideFlags: 0 @@ -16888,12 +16956,12 @@ RectTransform: m_GameObject: {fileID: 38397380} 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: 622949153} - - {fileID: 906316176} - - {fileID: 1433808438} - - {fileID: 964698836} + - {fileID: 1875727895} + - {fileID: 1306215264} + - {fileID: 1129222745} + - {fileID: 1710012295} m_Father: {fileID: 1107243629} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -20012,7 +20080,7 @@ RectTransform: m_GameObject: {fileID: 47834097} 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: 764483999} - {fileID: 777906430} @@ -21519,7 +21587,7 @@ RectTransform: m_GameObject: {fileID: 51385707} 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: 1557109620} - {fileID: 881700335} @@ -31267,6 +31335,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 79962790} +--- !u!1 &80202032 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 80202033} + - component: {fileID: 80202035} + - component: {fileID: 80202034} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &80202033 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 80202032} + 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: 2051365700} + m_Father: {fileID: 1875727895} + 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: 32, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &80202034 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 80202032} + 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 &80202035 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 80202032} --- !u!1 &80311718 GameObject: m_ObjectHideFlags: 0 @@ -32655,6 +32792,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 83109467} +--- !u!1 &83523745 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 83523746} + - component: {fileID: 83523748} + - component: {fileID: 83523747} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &83523746 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 83523745} + 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: 1149726836} + 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: 48, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &83523747 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 83523745} + 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: "\u84B8\u53D1\u91CF" +--- !u!222 &83523748 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 83523745} --- !u!1 &83646148 GameObject: m_ObjectHideFlags: 0 @@ -34322,6 +34533,7 @@ MonoBehaviour: m_BorderWidth: 1 m_BorderColor: {r: 0, g: 0, b: 0, a: 1} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -34367,6 +34579,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -34452,6 +34665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -34498,6 +34712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -34559,6 +34774,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -34605,6 +34821,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 200 @@ -34666,6 +34883,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -34712,6 +34930,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 150 @@ -34773,6 +34992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -34819,6 +35039,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 80 @@ -34880,6 +35101,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -34926,6 +35148,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 70 @@ -34987,6 +35210,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -35033,6 +35257,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 110 @@ -35094,6 +35319,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -35140,6 +35366,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 130 @@ -35214,6 +35441,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -35302,6 +35530,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -35386,6 +35615,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -35469,6 +35699,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -39027,6 +39258,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 95772963} +--- !u!1 &95831926 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 95831927} + - component: {fileID: 95831929} + - component: {fileID: 95831928} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &95831927 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 95831926} + 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: 1057130480} + m_Father: {fileID: 560687081} + 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: 64, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &95831928 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 95831926} + 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 &95831929 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 95831926} --- !u!1 &95861208 GameObject: m_ObjectHideFlags: 0 @@ -39730,15 +40030,15 @@ RectTransform: m_GameObject: {fileID: 98168650} 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: 1704181249} m_Father: {fileID: 1640796314} m_RootOrder: 17 m_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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} --- !u!1 &98374345 @@ -40694,7 +40994,7 @@ RectTransform: m_GameObject: {fileID: 100855411} 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: 1032114940} - {fileID: 112915905} @@ -41308,6 +41608,74 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &103526929 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 103526930} + - component: {fileID: 103526932} + - component: {fileID: 103526931} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &103526930 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 103526929} + 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: 2089140508} + 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 &103526931 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 103526929} + 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 &103526932 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 103526929} --- !u!1 &103585698 GameObject: m_ObjectHideFlags: 0 @@ -43937,6 +44305,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 108816890} +--- !u!1 &108914604 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 108914605} + - component: {fileID: 108914607} + - component: {fileID: 108914606} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &108914605 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 108914604} + 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: 1710012295} + 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 &108914606 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 108914604} + 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.83137256, g: 0.50980395, b: 0.39607844, 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 &108914607 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 108914604} --- !u!1 &109329085 GameObject: m_ObjectHideFlags: 0 @@ -45360,6 +45796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -45405,6 +45842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -45490,6 +45928,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -45536,6 +45975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 55 @@ -45603,6 +46043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -45649,6 +46090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 25 @@ -45716,6 +46158,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -45762,6 +46205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 56 @@ -45829,6 +46273,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -45875,6 +46320,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 33 @@ -45942,6 +46388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -45988,6 +46435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 42 @@ -46055,6 +46503,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46101,6 +46550,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 82 @@ -46168,6 +46618,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46214,6 +46665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 74 @@ -46281,6 +46733,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46327,6 +46780,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 78 @@ -46394,6 +46848,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46440,6 +46895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 267 @@ -46507,6 +46963,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46553,6 +47010,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 185 @@ -46620,6 +47078,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46666,6 +47125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 39 @@ -46732,6 +47192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46778,6 +47239,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 41 @@ -46844,6 +47306,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -46890,6 +47353,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 64 @@ -46956,6 +47420,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47002,6 +47467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 108 @@ -47068,6 +47534,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47114,6 +47581,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 108 @@ -47180,6 +47648,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47226,6 +47695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 33 @@ -47292,6 +47762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47338,6 +47809,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 94 @@ -47404,6 +47876,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47450,6 +47923,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 186 @@ -47516,6 +47990,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47562,6 +48037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 57 @@ -47628,6 +48104,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47674,6 +48151,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 22 @@ -47740,6 +48218,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47786,6 +48265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 39 @@ -47852,6 +48332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -47898,6 +48379,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 94 @@ -47964,6 +48446,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48010,6 +48493,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 99 @@ -48076,6 +48560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48122,6 +48607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 31 @@ -48188,6 +48674,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48234,6 +48721,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 42 @@ -48300,6 +48788,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48346,6 +48835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 154 @@ -48412,6 +48902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48458,6 +48949,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 234 @@ -48524,6 +49016,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48570,6 +49063,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 160 @@ -48636,6 +49130,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48682,6 +49177,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 134 @@ -48748,6 +49244,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48794,6 +49291,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 52 @@ -48860,6 +49358,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -48906,6 +49405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 46 @@ -49145,6 +49645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -49190,6 +49691,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -49275,6 +49777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -49321,6 +49824,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 26 @@ -49388,6 +49892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -49434,6 +49939,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 85 @@ -49501,6 +50007,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -49547,6 +50054,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 78 @@ -49614,6 +50122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -49660,6 +50169,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 21 @@ -49727,6 +50237,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -49773,6 +50284,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 41 @@ -49840,6 +50352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -49886,6 +50399,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 56 @@ -49953,6 +50467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -49999,6 +50514,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 64 @@ -50066,6 +50582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50112,6 +50629,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 55 @@ -50179,6 +50697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50225,6 +50744,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 76 @@ -50292,6 +50812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50338,6 +50859,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 91 @@ -50405,6 +50927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50451,6 +50974,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 84 @@ -50517,6 +51041,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50563,6 +51088,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 64 @@ -50629,6 +51155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50675,6 +51202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 70 @@ -50741,6 +51269,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50787,6 +51316,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 77 @@ -50853,6 +51383,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -50899,6 +51430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 109 @@ -50965,6 +51497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51011,6 +51544,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 73 @@ -51077,6 +51611,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51123,6 +51658,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 54 @@ -51189,6 +51725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51235,6 +51772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 51 @@ -51301,6 +51839,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51347,6 +51886,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 91 @@ -51413,6 +51953,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51459,6 +52000,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 73 @@ -51525,6 +52067,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51571,6 +52114,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 73 @@ -51637,6 +52181,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51683,6 +52228,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 84 @@ -51749,6 +52295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51795,6 +52342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 93 @@ -51861,6 +52409,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -51907,6 +52456,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 99 @@ -51973,6 +52523,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -52019,6 +52570,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 146 @@ -52085,6 +52637,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -52131,6 +52684,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 113 @@ -52197,6 +52751,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -52243,6 +52798,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 81 @@ -52309,6 +52865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -52355,6 +52912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 56 @@ -52421,6 +52979,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -52467,6 +53026,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 82 @@ -52533,6 +53093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -52579,6 +53140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 106 @@ -52645,6 +53207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -52691,6 +53254,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 118 @@ -52946,6 +53510,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -52991,6 +53556,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -53076,6 +53642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53122,6 +53689,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 26 @@ -53189,6 +53757,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53235,6 +53804,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 85 @@ -53302,6 +53872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53348,6 +53919,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 78 @@ -53415,6 +53987,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53461,6 +54034,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 21 @@ -53528,6 +54102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53574,6 +54149,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 41 @@ -53641,6 +54217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53687,6 +54264,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 56 @@ -53754,6 +54332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53800,6 +54379,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 64 @@ -53867,6 +54447,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -53913,6 +54494,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 55 @@ -53980,6 +54562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54026,6 +54609,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 76 @@ -54093,6 +54677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54139,6 +54724,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 91 @@ -54206,6 +54792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54252,6 +54839,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 84 @@ -54318,6 +54906,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54364,6 +54953,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 64 @@ -54430,6 +55020,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54476,6 +55067,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 70 @@ -54542,6 +55134,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54588,6 +55181,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 77 @@ -54654,6 +55248,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54700,6 +55295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 109 @@ -54766,6 +55362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54812,6 +55409,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 73 @@ -54878,6 +55476,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -54924,6 +55523,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 54 @@ -54990,6 +55590,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55036,6 +55637,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 51 @@ -55102,6 +55704,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55148,6 +55751,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 91 @@ -55214,6 +55818,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55260,6 +55865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 73 @@ -55326,6 +55932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55372,6 +55979,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 73 @@ -55438,6 +56046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55484,6 +56093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 84 @@ -55550,6 +56160,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55596,6 +56207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 93 @@ -55662,6 +56274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55708,6 +56321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 99 @@ -55774,6 +56388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55820,6 +56435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 146 @@ -55886,6 +56502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -55932,6 +56549,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 113 @@ -55998,6 +56616,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56044,6 +56663,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 81 @@ -56110,6 +56730,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56156,6 +56777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 56 @@ -56222,6 +56844,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56268,6 +56891,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 82 @@ -56334,6 +56958,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56380,6 +57005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 106 @@ -56446,6 +57072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56492,6 +57119,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 118 @@ -56565,6 +57193,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56611,6 +57240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 65 @@ -56677,6 +57307,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56723,6 +57354,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 83 @@ -56789,6 +57421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56835,6 +57468,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 109 @@ -56901,6 +57535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -56947,6 +57582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 106 @@ -57013,6 +57649,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57059,6 +57696,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 109 @@ -57125,6 +57763,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57171,6 +57810,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 106 @@ -57237,6 +57877,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57283,6 +57924,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 89 @@ -57349,6 +57991,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57395,6 +58038,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 53 @@ -57461,6 +58105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57507,6 +58152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 80 @@ -57573,6 +58219,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57619,6 +58266,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 117 @@ -57685,6 +58333,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57731,6 +58380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 99 @@ -57797,6 +58447,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57843,6 +58494,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 95 @@ -57909,6 +58561,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -57955,6 +58608,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 116 @@ -58021,6 +58675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58067,6 +58722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 108 @@ -58133,6 +58789,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58179,6 +58836,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 134 @@ -58245,6 +58903,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58291,6 +58950,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 79 @@ -58357,6 +59017,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58403,6 +59064,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 71 @@ -58469,6 +59131,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58515,6 +59178,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 97 @@ -58581,6 +59245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58627,6 +59292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 84 @@ -58693,6 +59359,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58739,6 +59406,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 87 @@ -58805,6 +59473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58851,6 +59520,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 104 @@ -58917,6 +59587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -58963,6 +59634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 87 @@ -59029,6 +59701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59075,6 +59748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 168 @@ -59141,6 +59815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59187,6 +59862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 65 @@ -59253,6 +59929,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59299,6 +59976,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 39 @@ -59365,6 +60043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59411,6 +60090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 39 @@ -59477,6 +60157,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59523,6 +60204,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 93 @@ -59589,6 +60271,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59635,6 +60318,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 188 @@ -59701,6 +60385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59747,6 +60432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 174 @@ -59813,6 +60499,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -59859,6 +60546,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 187 @@ -59932,6 +60620,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -60015,6 +60704,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -60099,6 +60789,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -60182,6 +60873,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -60433,6 +61125,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 111877564} +--- !u!1 &112197434 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 112197435} + - component: {fileID: 112197437} + - component: {fileID: 112197436} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &112197435 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 112197434} + 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: 455343983} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &112197436 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 112197434} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u73AF\u5F62\u56FE" +--- !u!222 &112197437 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 112197434} --- !u!1 &112438341 GameObject: m_ObjectHideFlags: 0 @@ -62263,149 +63029,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 117662068} ---- !u!1 &117762803 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 117762804} - - component: {fileID: 117762806} - - component: {fileID: 117762805} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &117762804 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 117762803} - 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: 853864521} - m_Father: {fileID: 1027321808} - 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: 26, y: 0} - m_SizeDelta: {x: 64, y: 16} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &117762805 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 117762803} - 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 &117762806 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 117762803} ---- !u!1 &118142194 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 118142195} - - component: {fileID: 118142197} - - component: {fileID: 118142196} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &118142195 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 118142194} - 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: 354121007} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &118142196 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 118142194} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u96F7\u8FBE\u56FE" ---- !u!222 &118142197 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 118142194} --- !u!1 &118209924 GameObject: m_ObjectHideFlags: 0 @@ -63045,80 +63668,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 119601854} ---- !u!1 &119906255 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 119906256} - - component: {fileID: 119906258} - - component: {fileID: 119906257} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &119906256 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 119906255} - 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: 604728882} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &119906257 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 119906255} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u9996\u9875" ---- !u!222 &119906258 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 119906255} --- !u!1 &120224185 GameObject: m_ObjectHideFlags: 0 @@ -64946,6 +65495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -64991,6 +65541,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -65076,6 +65627,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -65122,6 +65674,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -65183,6 +65736,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -65229,6 +65783,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 132 @@ -65290,6 +65845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -65336,6 +65892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 101 @@ -65397,6 +65954,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -65443,6 +66001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 134 @@ -65504,6 +66063,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -65550,6 +66110,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 90 @@ -65611,6 +66172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -65657,6 +66219,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 230 @@ -65718,6 +66281,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -65764,6 +66328,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 210 @@ -65982,6 +66547,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -66027,6 +66593,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -66112,6 +66679,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -66158,6 +66726,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 220 @@ -66219,6 +66788,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -66265,6 +66835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 182 @@ -66326,6 +66897,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -66372,6 +66944,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 191 @@ -66433,6 +67006,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -66479,6 +67053,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 234 @@ -66540,6 +67115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -66586,6 +67162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 290 @@ -66647,6 +67224,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -66693,6 +67271,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 330 @@ -66754,6 +67333,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -66800,6 +67380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 310 @@ -67018,6 +67599,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -67063,6 +67645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -67148,6 +67731,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -67194,6 +67778,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 150 @@ -67255,6 +67840,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -67301,6 +67887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 232 @@ -67362,6 +67949,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -67408,6 +67996,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 201 @@ -67469,6 +68058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -67515,6 +68105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 154 @@ -67576,6 +68167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -67622,6 +68214,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 190 @@ -67683,6 +68276,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -67729,6 +68323,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 330 @@ -67790,6 +68385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -67836,6 +68432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 410 @@ -68054,6 +68651,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -68099,6 +68697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -68184,6 +68783,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -68230,6 +68830,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 320 @@ -68291,6 +68892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -68337,6 +68939,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 332 @@ -68398,6 +69001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -68444,6 +69048,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 301 @@ -68505,6 +69110,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -68551,6 +69157,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 334 @@ -68612,6 +69219,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -68658,6 +69266,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 390 @@ -68719,6 +69328,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -68765,6 +69375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 330 @@ -68826,6 +69437,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -68872,6 +69484,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 320 @@ -69090,6 +69703,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -69135,6 +69749,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -69220,6 +69835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -69266,6 +69882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -69327,6 +69944,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -69373,6 +69991,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 932 @@ -69434,6 +70053,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -69480,6 +70100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -69541,6 +70162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -69587,6 +70209,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 934 @@ -69648,6 +70271,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -69694,6 +70318,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1290 @@ -69755,6 +70380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -69801,6 +70427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1330 @@ -69862,6 +70489,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -69908,6 +70536,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -69982,6 +70611,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -70070,6 +70700,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -70154,6 +70785,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -70237,6 +70869,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -74670,6 +75303,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -74715,6 +75349,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -74800,6 +75435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -74846,6 +75482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 18203 @@ -74907,6 +75544,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -74953,6 +75591,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 23489 @@ -75014,6 +75653,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -75060,6 +75700,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 29034 @@ -75121,6 +75762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -75167,6 +75809,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 104970 @@ -75228,6 +75871,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -75274,6 +75918,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 131744 @@ -75335,6 +75980,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -75381,6 +76027,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 630230 @@ -75599,6 +76246,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -75644,6 +76292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -75729,6 +76378,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -75775,6 +76425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 19325 @@ -75836,6 +76487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -75882,6 +76534,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 23438 @@ -75943,6 +76596,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -75989,6 +76643,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 31000 @@ -76050,6 +76705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -76096,6 +76752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 121594 @@ -76157,6 +76814,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -76203,6 +76861,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 134141 @@ -76264,6 +76923,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -76310,6 +76970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 681807 @@ -76377,6 +77038,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -76465,6 +77127,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -76555,6 +77218,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -76638,6 +77302,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -76953,75 +77618,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 137963547} ---- !u!1 &138103304 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 138103305} - - component: {fileID: 138103307} - - component: {fileID: 138103306} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &138103305 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 138103304} - 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: 684224145} - m_Father: {fileID: 1446344905} - 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: 26, y: 0} - m_SizeDelta: {x: 64, y: 16} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &138103306 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 138103304} - 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 &138103307 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 138103304} --- !u!1 &138292119 GameObject: m_ObjectHideFlags: 0 @@ -77968,6 +78564,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 140210354} +--- !u!1 &140637541 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 140637542} + - component: {fileID: 140637544} + - component: {fileID: 140637543} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &140637542 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 140637541} + 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: 945893680} + 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 &140637543 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 140637541} + 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 &140637544 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 140637541} --- !u!1 &140697331 GameObject: m_ObjectHideFlags: 0 @@ -80736,6 +81400,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -80781,6 +81446,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -80866,6 +81532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -80912,6 +81579,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -80973,6 +81641,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -81019,6 +81688,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 200 @@ -81080,6 +81750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -81126,6 +81797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - -91 @@ -81187,6 +81859,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -81233,6 +81906,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 80 @@ -81294,6 +81968,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -81340,6 +82015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 285.5 @@ -81401,6 +82077,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -81447,6 +82124,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 110 @@ -81508,6 +82186,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -81554,6 +82233,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 275.4 @@ -81628,6 +82308,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -81716,6 +82397,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -81800,6 +82482,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -81883,6 +82566,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -84954,6 +85638,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 156807357} +--- !u!1 &156811549 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 156811550} + - component: {fileID: 156811552} + - component: {fileID: 156811551} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &156811550 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 156811549} + 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: 1190818558} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &156811551 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 156811549} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u6563\u70B9\u56FE" +--- !u!222 &156811552 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 156811549} --- !u!1 &157176022 GameObject: m_ObjectHideFlags: 0 @@ -86681,15 +87439,15 @@ RectTransform: m_GameObject: {fileID: 160947392} 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: 870148265} m_Father: {fileID: 449267886} m_RootOrder: 10 m_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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} --- !u!1 &161184053 @@ -89452,15 +90210,15 @@ RectTransform: m_GameObject: {fileID: 170053273} 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: 710735257} m_Father: {fileID: 1107243629} m_RootOrder: 15 m_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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} --- !u!1 &170059673 @@ -91570,6 +92328,137 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 175038793} +--- !u!1 &175163601 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 175163602} + - component: {fileID: 175163606} + - component: {fileID: 175163605} + - component: {fileID: 175163604} + - component: {fileID: 175163603} + m_Layer: 5 + m_Name: "btn_\u67F1\u72B6\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &175163602 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 175163601} + 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: 430848819} + m_Father: {fileID: 1984073382} + 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: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &175163603 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 175163601} + 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 + delegates: [] +--- !u!114 &175163604 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 175163601} + 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: 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 + 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: 175163605} + 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 &175163605 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 175163601} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &175163606 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 175163601} --- !u!1 &175238673 GameObject: m_ObjectHideFlags: 0 @@ -92191,6 +93080,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 175981293} +--- !u!1 &176009685 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 176009686} + - component: {fileID: 176009688} + - component: {fileID: 176009687} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &176009686 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 176009685} + 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: 1028119068} + 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: 64, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &176009687 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 176009685} + 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: "\u9884\u7B97\u5206\u914D" +--- !u!222 &176009688 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 176009685} --- !u!1 &176137017 GameObject: m_ObjectHideFlags: 0 @@ -93879,15 +94842,15 @@ RectTransform: m_GameObject: {fileID: 180937099} 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: 1013202007} m_Father: {fileID: 2057043785} m_RootOrder: 33 m_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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} --- !u!1 &180945052 @@ -94357,6 +95320,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 181721365} +--- !u!1 &181735818 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 181735819} + - component: {fileID: 181735821} + - component: {fileID: 181735820} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &181735819 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 181735818} + 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: 596483469} + m_Father: {fileID: 945893680} + 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: 80, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &181735820 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 181735818} + 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 &181735821 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 181735818} --- !u!1 &181860399 GameObject: m_ObjectHideFlags: 0 @@ -97239,7 +98271,7 @@ RectTransform: m_GameObject: {fileID: 190832124} 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: 1916434042} - {fileID: 2081782407} @@ -97308,6 +98340,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -3} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 1, y: 1} +--- !u!1 &191094391 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 191094392} + - component: {fileID: 191094394} + - component: {fileID: 191094393} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &191094392 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 191094391} + 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: 2065663859} + 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 &191094393 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 191094391} + 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.5686275, g: 0.78039217, b: 0.68235296, 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 &191094394 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 191094391} --- !u!1 &191102053 GameObject: m_ObjectHideFlags: 0 @@ -100197,6 +101297,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 199025865} +--- !u!1 &199037491 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 199037492} + - component: {fileID: 199037494} + - component: {fileID: 199037493} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &199037492 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 199037491} + 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: 551974268} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &199037493 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 199037491} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u96F7\u8FBE\u56FE" +--- !u!222 &199037494 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 199037491} --- !u!1 &199251371 GameObject: m_ObjectHideFlags: 0 @@ -113055,137 +114229,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 239433765} ---- !u!1 &239759327 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 239759328} - - component: {fileID: 239759332} - - component: {fileID: 239759331} - - component: {fileID: 239759330} - - component: {fileID: 239759329} - m_Layer: 5 - m_Name: "btn_\u5176\u4ED6" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &239759328 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 239759327} - 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: 1290090333} - m_Father: {fileID: 1984073382} - m_RootOrder: 9 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &239759329 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 239759327} - 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 - delegates: [] ---- !u!114 &239759330 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 239759327} - 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: 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 - 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: 239759331} - 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 &239759331 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 239759327} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &239759332 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 239759327} --- !u!1 &239771764 GameObject: m_ObjectHideFlags: 0 @@ -113211,7 +114254,7 @@ RectTransform: m_GameObject: {fileID: 239771764} m_LocalRotation: {x: 0, y: 0, z: -0.70090926, w: 0.71325046} 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: 926932800} m_RootOrder: 10 @@ -113359,7 +114402,7 @@ RectTransform: m_GameObject: {fileID: 240114079} 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: 1107243629} m_RootOrder: 9 @@ -116140,6 +117183,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -116185,6 +117229,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -116270,6 +117315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -116316,6 +117362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 80 @@ -116537,6 +117584,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -116582,6 +117630,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -116667,6 +117716,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -116713,6 +117763,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1.5 @@ -116937,6 +117988,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -116982,6 +118034,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -117067,6 +118120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -117113,6 +118167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1.5 @@ -117337,6 +118392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -117382,6 +118438,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -117467,6 +118524,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -117513,6 +118571,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1 @@ -117706,7 +118765,7 @@ RectTransform: m_GameObject: {fileID: 245728541} 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: 2057043785} m_RootOrder: 3 @@ -117780,7 +118839,7 @@ RectTransform: m_GameObject: {fileID: 245866650} 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: 2057043785} m_RootOrder: 27 @@ -118953,80 +120012,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 248218967} ---- !u!1 &248293907 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 248293908} - - component: {fileID: 248293910} - - component: {fileID: 248293909} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &248293908 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 248293907} - 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: 1013356474} - 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: 48, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &248293909 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 248293907} - 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: "\u84B8\u53D1\u91CF" ---- !u!222 &248293910 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 248293907} --- !u!1 &248464239 GameObject: m_ObjectHideFlags: 0 @@ -122076,80 +123061,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 257280136} ---- !u!1 &257544906 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 257544907} - - component: {fileID: 257544909} - - component: {fileID: 257544908} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &257544907 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 257544906} - 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: 981534938} - 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: 64, y: 20} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &257544908 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 257544906} - 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: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: legend2 ---- !u!222 &257544909 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 257544906} --- !u!1 &257665948 GameObject: m_ObjectHideFlags: 0 @@ -123076,137 +123987,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 259899214} ---- !u!1 &259972367 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 259972368} - - component: {fileID: 259972372} - - component: {fileID: 259972371} - - component: {fileID: 259972370} - - component: {fileID: 259972369} - m_Layer: 5 - m_Name: "btn_\u6298\u7EBF\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &259972368 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 259972367} - 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: 695417662} - m_Father: {fileID: 1984073382} - 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: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &259972369 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 259972367} - 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 - delegates: [] ---- !u!114 &259972370 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 259972367} - 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: 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 - 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: 259972371} - 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 &259972371 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 259972367} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &259972372 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 259972367} --- !u!1 &260098075 GameObject: m_ObjectHideFlags: 0 @@ -124104,6 +124884,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -124149,6 +124930,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -124234,6 +125016,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -124280,6 +125063,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 18203 @@ -124341,6 +125125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -124387,6 +125172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 23489 @@ -124448,6 +125234,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -124494,6 +125281,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 29034 @@ -124555,6 +125343,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -124601,6 +125390,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 104970 @@ -124662,6 +125452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -124708,6 +125499,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 131744 @@ -124769,6 +125561,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -124815,6 +125608,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 630230 @@ -125033,6 +125827,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -125078,6 +125873,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -125163,6 +125959,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -125209,6 +126006,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 19325 @@ -125270,6 +126068,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -125316,6 +126115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 23438 @@ -125377,6 +126177,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -125423,6 +126224,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 31000 @@ -125484,6 +126286,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -125530,6 +126333,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 121594 @@ -125591,6 +126395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -125637,6 +126442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 134141 @@ -125698,6 +126504,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -125744,6 +126551,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 681807 @@ -125811,6 +126619,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -125899,6 +126708,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -125989,6 +126799,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -126072,6 +126883,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -128062,6 +128874,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 266400109} +--- !u!1 &266926533 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 266926534} + - component: {fileID: 266926538} + - component: {fileID: 266926537} + - component: {fileID: 266926536} + - component: {fileID: 266926535} + m_Layer: 0 + m_Name: 1_legend2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &266926534 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 266926533} + 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: 1484769691} + - {fileID: 2070068176} + m_Father: {fileID: 1518182042} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -26} + m_SizeDelta: {x: 90, y: 16} + m_Pivot: {x: 1, y: 1} +--- !u!114 &266926535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 266926533} + 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 &266926536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 266926533} + 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: 266926537} + 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 &266926537 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 266926533} + 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 &266926538 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 266926533} --- !u!1 &267136967 GameObject: m_ObjectHideFlags: 0 @@ -128652,7 +129608,7 @@ RectTransform: m_GameObject: {fileID: 269036020} 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: 1107243629} m_RootOrder: 6 @@ -129306,7 +130262,7 @@ RectTransform: m_GameObject: {fileID: 269847830} 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: 1107243629} m_RootOrder: 8 @@ -133607,80 +134563,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 280364425} ---- !u!1 &280394362 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 280394363} - - component: {fileID: 280394365} - - component: {fileID: 280394364} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &280394363 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 280394362} - 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: 409336971} - 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: 48, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &280394364 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 280394362} - 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: "\u964D\u6C34\u91CF" ---- !u!222 &280394365 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 280394362} --- !u!1 &280813312 GameObject: m_ObjectHideFlags: 0 @@ -135758,7 +136640,7 @@ RectTransform: m_GameObject: {fileID: 286405257} 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: 2057043785} m_RootOrder: 14 @@ -143585,6 +144467,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 309119229} +--- !u!1 &309338720 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 309338721} + - component: {fileID: 309338723} + - component: {fileID: 309338722} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &309338721 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 309338720} + 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: 339409276} + m_Father: {fileID: 860933079} + 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: 26, y: 0} + m_SizeDelta: {x: 64, y: 16} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &309338722 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 309338720} + 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 &309338723 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 309338720} --- !u!1 &309341386 GameObject: m_ObjectHideFlags: 0 @@ -148370,80 +149321,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 322189239} ---- !u!1 &322331550 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 322331551} - - component: {fileID: 322331553} - - component: {fileID: 322331552} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &322331551 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 322331550} - 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: 928295664} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &322331552 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 322331550} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u70ED\u529B\u56FE" ---- !u!222 &322331553 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 322331550} --- !u!1 &322498271 GameObject: m_ObjectHideFlags: 0 @@ -148535,7 +149412,7 @@ RectTransform: m_GameObject: {fileID: 322601876} 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: 530520252} - {fileID: 12430603} @@ -148545,9 +149422,9 @@ 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_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &322880295 @@ -149488,7 +150365,7 @@ RectTransform: m_GameObject: {fileID: 325647268} 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: 1571692222} m_Father: {fileID: 1640796314} @@ -153927,6 +154804,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &339409275 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 339409276} + - component: {fileID: 339409278} + - component: {fileID: 339409277} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &339409276 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 339409275} + 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: 309338721} + 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: 64, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &339409277 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 339409275} + 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: legend5 +--- !u!222 &339409278 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 339409275} --- !u!1 &339441357 GameObject: m_ObjectHideFlags: 0 @@ -154217,6 +155168,137 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 340019998} +--- !u!1 &340045594 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 340045595} + - component: {fileID: 340045599} + - component: {fileID: 340045598} + - component: {fileID: 340045597} + - component: {fileID: 340045596} + m_Layer: 5 + m_Name: "btn_\u5176\u4ED6" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &340045595 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340045594} + 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: 459940708} + m_Father: {fileID: 1984073382} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &340045596 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340045594} + 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 + delegates: [] +--- !u!114 &340045597 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340045594} + 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: 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 + 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: 340045598} + 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 &340045598 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340045594} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &340045599 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340045594} --- !u!1 &340682491 GameObject: m_ObjectHideFlags: 0 @@ -158184,137 +159266,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 353745682} ---- !u!1 &354121006 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 354121007} - - component: {fileID: 354121011} - - component: {fileID: 354121010} - - component: {fileID: 354121009} - - component: {fileID: 354121008} - m_Layer: 5 - m_Name: "btn_\u96F7\u8FBE\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &354121007 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 354121006} - 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: 118142195} - m_Father: {fileID: 1984073382} - 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: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &354121008 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 354121006} - 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 - delegates: [] ---- !u!114 &354121009 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 354121006} - 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: 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 - 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: 354121010} - 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 &354121010 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 354121006} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &354121011 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 354121006} --- !u!1 &354148161 GameObject: m_ObjectHideFlags: 0 @@ -160344,6 +161295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -160389,6 +161341,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -160474,6 +161427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -160520,6 +161474,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -160581,6 +161536,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -160627,6 +161583,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1081.1 @@ -160688,6 +161645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -160734,6 +161692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -160795,6 +161754,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -160841,6 +161801,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1019.7 @@ -160902,6 +161863,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -160948,6 +161910,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 492 @@ -161009,6 +161972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -161055,6 +162019,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1511.6 @@ -161116,6 +162081,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -161162,6 +162128,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -161380,6 +162347,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -161425,6 +162393,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -161510,6 +162479,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -161556,6 +162526,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 520 @@ -161617,6 +162588,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -161663,6 +162635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 681.1 @@ -161724,6 +162697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -161770,6 +162744,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1200 @@ -161831,6 +162806,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -161877,6 +162853,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1500 @@ -161938,6 +162915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -161984,6 +162962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 300 @@ -162045,6 +163024,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -162091,6 +163071,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 500 @@ -162152,6 +163133,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -162198,6 +163180,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1000 @@ -162416,6 +163399,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -162461,6 +163445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -162546,6 +163531,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -162592,6 +163578,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1200 @@ -162653,6 +163640,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -162699,6 +163687,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1400 @@ -162760,6 +163749,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -162806,6 +163796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 400 @@ -162867,6 +163858,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -162913,6 +163905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 500 @@ -162974,6 +163967,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -163020,6 +164014,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1000 @@ -163081,6 +164076,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -163127,6 +164123,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1900 @@ -163188,6 +164185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -163234,6 +164232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1500 @@ -163308,6 +164307,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -163396,6 +164396,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -163480,6 +164481,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -163563,6 +164565,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -166321,6 +167324,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -166366,6 +167370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -166451,6 +167456,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -166497,6 +167503,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 18 @@ -168107,7 +169114,7 @@ RectTransform: m_GameObject: {fileID: 367237726} m_LocalRotation: {x: 0, y: 0, z: 0.24386892, w: 0.9698082} 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: 926932800} m_RootOrder: 11 @@ -172722,7 +173729,7 @@ RectTransform: m_GameObject: {fileID: 382211946} 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: 1678104076} - {fileID: 465221195} @@ -172976,7 +173983,7 @@ RectTransform: m_GameObject: {fileID: 383341879} 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: 648376431} m_RootOrder: 1 @@ -172984,7 +173991,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 12, y: 19.333332} + m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &383341881 MonoBehaviour: @@ -173018,7 +174025,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 2 + m_Text: Text --- !u!222 &383341882 CanvasRenderer: m_ObjectHideFlags: 0 @@ -179089,7 +180096,7 @@ RectTransform: m_GameObject: {fileID: 401163385} 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: 2057043785} m_RootOrder: 8 @@ -182362,6 +183369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -182407,6 +183415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -182492,6 +183501,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -182538,6 +183548,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -182599,6 +183610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -182645,6 +183657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1081.1 @@ -182706,6 +183719,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -182752,6 +183766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -182813,6 +183828,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -182859,6 +183875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1019.7 @@ -182920,6 +183937,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -182966,6 +183984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 492 @@ -183027,6 +184046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -183073,6 +184093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1511.6 @@ -183134,6 +184155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -183180,6 +184202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -183398,6 +184421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -183443,6 +184467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -183528,6 +184553,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -183574,6 +184600,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1 @@ -183635,6 +184662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -183681,6 +184709,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 3 @@ -183742,6 +184771,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -183788,6 +184818,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 8 @@ -183849,6 +184880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -183895,6 +184927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 4 @@ -183956,6 +184989,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -184002,6 +185036,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 3 @@ -184063,6 +185098,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -184109,6 +185145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 9 @@ -184170,6 +185207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -184216,6 +185254,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 7 @@ -184290,6 +185329,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -184378,6 +185418,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -184462,6 +185503,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -184545,6 +185587,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -184689,75 +185732,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &409336970 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 409336971} - - component: {fileID: 409336973} - - component: {fileID: 409336972} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &409336971 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 409336970} - 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: 280394363} - m_Father: {fileID: 1266275635} - 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: 48, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &409336972 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 409336970} - 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 &409336973 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 409336970} --- !u!1 &409507523 GameObject: m_ObjectHideFlags: 0 @@ -189726,6 +190700,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 420489675} +--- !u!1 &420497185 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 420497186} + - component: {fileID: 420497188} + - component: {fileID: 420497187} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &420497186 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 420497185} + 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: 1773646172} + m_Father: {fileID: 1710012295} + 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: 32, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &420497187 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 420497185} + 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 &420497188 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 420497185} --- !u!1 &420522045 GameObject: m_ObjectHideFlags: 0 @@ -192248,6 +193291,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -192293,6 +193337,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -192378,6 +193423,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -192424,6 +193470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 335 @@ -192485,6 +193532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -192531,6 +193579,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 310 @@ -192592,6 +193641,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -192638,6 +193688,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 234 @@ -192699,6 +193750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -192745,6 +193797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 135 @@ -192806,6 +193859,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -192852,6 +193906,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1548 @@ -192932,7 +193987,7 @@ RectTransform: m_GameObject: {fileID: 426876013} 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: 1910686491} m_RootOrder: 12 @@ -194583,6 +195638,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 430846249} +--- !u!1 &430848818 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 430848819} + - component: {fileID: 430848821} + - component: {fileID: 430848820} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &430848819 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 430848818} + 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: 175163602} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &430848820 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 430848818} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u67F1\u72B6\u56FE" +--- !u!222 &430848821 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 430848818} --- !u!1 &431108751 GameObject: m_ObjectHideFlags: 0 @@ -194729,6 +195858,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &431659539 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 431659540} + - component: {fileID: 431659542} + - component: {fileID: 431659541} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &431659540 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 431659539} + 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: 493280966} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &431659541 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 431659539} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u70ED\u529B\u56FE" +--- !u!222 &431659542 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 431659539} --- !u!1 &431829116 GameObject: m_ObjectHideFlags: 0 @@ -201385,6 +202588,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -201430,6 +202634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -201515,6 +202720,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -201561,6 +202767,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 55 - 9 @@ -201628,6 +202835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -201674,6 +202882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 11 @@ -201741,6 +202950,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -201787,6 +202997,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 56 - 7 @@ -201854,6 +203065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -201900,6 +203112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 7 @@ -201967,6 +203180,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202013,6 +203227,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 42 - 24 @@ -202080,6 +203295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202126,6 +203342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 82 - 58 @@ -202193,6 +203410,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202239,6 +203457,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 74 - 49 @@ -202306,6 +203525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202352,6 +203572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 78 - 55 @@ -202419,6 +203640,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202465,6 +203687,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 267 - 216 @@ -202532,6 +203755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202578,6 +203802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 185 - 127 @@ -202645,6 +203870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202691,6 +203917,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 19 @@ -202757,6 +203984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202803,6 +204031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 11 @@ -202869,6 +204098,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -202915,6 +204145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 64 - 38 @@ -202981,6 +204212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203027,6 +204259,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 108 - 79 @@ -203093,6 +204326,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203139,6 +204373,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 108 - 63 @@ -203205,6 +204440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203251,6 +204487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 6 @@ -203317,6 +204554,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203363,6 +204601,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 94 - 66 @@ -203429,6 +204668,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203475,6 +204715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 186 - 142 @@ -203541,6 +204782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203587,6 +204829,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 57 - 31 @@ -203653,6 +204896,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203699,6 +204943,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 8 @@ -203765,6 +205010,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203811,6 +205057,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 15 @@ -203877,6 +205124,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -203923,6 +205171,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 94 - 69 @@ -203989,6 +205238,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204035,6 +205285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 99 - 73 @@ -204101,6 +205352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204147,6 +205399,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 12 @@ -204213,6 +205466,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204259,6 +205513,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 42 - 27 @@ -204325,6 +205580,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204371,6 +205627,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 154 - 117 @@ -204437,6 +205694,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204483,6 +205741,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 234 - 185 @@ -204549,6 +205808,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204595,6 +205855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 120 @@ -204661,6 +205922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204707,6 +205969,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 134 - 96 @@ -204773,6 +206036,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204819,6 +206083,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 52 - 24 @@ -204885,6 +206150,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -204931,6 +206197,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 46 - 5 @@ -205165,6 +206432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -205210,6 +206478,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -205295,6 +206564,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -205341,6 +206611,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 37 @@ -205408,6 +206679,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -205454,6 +206726,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 85 - 62 @@ -205521,6 +206794,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -205567,6 +206841,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 78 - 38 @@ -205634,6 +206909,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -205680,6 +206956,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 21 @@ -205747,6 +207024,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -205793,6 +207071,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 42 @@ -205860,6 +207139,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -205906,6 +207186,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 56 - 52 @@ -205973,6 +207254,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206019,6 +207301,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 64 - 30 @@ -206086,6 +207369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206132,6 +207416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 55 - 48 @@ -206199,6 +207484,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206245,6 +207531,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 76 - 85 @@ -206312,6 +207599,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206358,6 +207646,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 91 - 81 @@ -206425,6 +207714,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206471,6 +207761,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 84 - 39 @@ -206537,6 +207828,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206583,6 +207875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 64 - 51 @@ -206649,6 +207942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206695,6 +207989,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 70 - 69 @@ -206761,6 +208056,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206807,6 +208103,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 77 - 105 @@ -206873,6 +208170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -206919,6 +208217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 109 - 68 @@ -206985,6 +208284,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207031,6 +208331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 73 - 68 @@ -207097,6 +208398,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207143,6 +208445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 54 - 27 @@ -207209,6 +208512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207255,6 +208559,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 51 - 61 @@ -207321,6 +208626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207367,6 +208673,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 91 - 71 @@ -207433,6 +208740,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207479,6 +208787,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 73 - 102 @@ -207545,6 +208854,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207591,6 +208901,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 73 - 50 @@ -207657,6 +208968,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207703,6 +209015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 84 - 94 @@ -207769,6 +209082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207815,6 +209129,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 93 - 77 @@ -207881,6 +209196,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -207927,6 +209243,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 99 - 130 @@ -207993,6 +209310,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -208039,6 +209357,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 146 - 84 @@ -208105,6 +209424,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -208151,6 +209471,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 113 - 108 @@ -208217,6 +209538,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -208263,6 +209585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 81 - 48 @@ -208329,6 +209652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -208375,6 +209699,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 56 - 48 @@ -208441,6 +209766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -208487,6 +209813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 82 - 92 @@ -208553,6 +209880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -208599,6 +209927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 106 - 116 @@ -208665,6 +209994,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -208711,6 +210041,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 118 - 50 @@ -208945,6 +210276,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -208990,6 +210322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -209075,6 +210408,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209121,6 +210455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 91 - 45 @@ -209188,6 +210523,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209234,6 +210570,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 65 - 27 @@ -209301,6 +210638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209347,6 +210685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 83 - 60 @@ -209414,6 +210753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209460,6 +210800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 109 - 81 @@ -209527,6 +210868,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209573,6 +210915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 106 - 77 @@ -209640,6 +210983,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209686,6 +211030,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 109 - 81 @@ -209753,6 +211098,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209799,6 +211145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 106 - 77 @@ -209866,6 +211213,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -209912,6 +211260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 89 - 65 @@ -209979,6 +211328,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210025,6 +211375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 53 - 33 @@ -210092,6 +211443,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210138,6 +211490,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 80 - 55 @@ -210205,6 +211558,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210251,6 +211605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 117 - 81 @@ -210317,6 +211672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210363,6 +211719,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 99 - 71 @@ -210429,6 +211786,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210475,6 +211833,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 95 - 69 @@ -210541,6 +211900,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210587,6 +211947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 116 - 87 @@ -210653,6 +212014,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210699,6 +212061,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 108 - 80 @@ -210765,6 +212128,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210811,6 +212175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 134 - 83 @@ -210877,6 +212242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -210923,6 +212289,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 79 - 43 @@ -210989,6 +212356,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211035,6 +212403,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 71 - 46 @@ -211101,6 +212470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211147,6 +212517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 97 - 71 @@ -211213,6 +212584,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211259,6 +212631,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 84 - 57 @@ -211325,6 +212698,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211371,6 +212745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 87 - 63 @@ -211437,6 +212812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211483,6 +212859,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 104 - 77 @@ -211549,6 +212926,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211595,6 +212973,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 87 - 62 @@ -211661,6 +213040,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211707,6 +213087,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168 - 128 @@ -211773,6 +213154,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211819,6 +213201,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 65 - 45 @@ -211885,6 +213268,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -211931,6 +213315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 24 @@ -211997,6 +213382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -212043,6 +213429,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 24 @@ -212109,6 +213496,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -212155,6 +213543,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 93 - 68 @@ -212221,6 +213610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -212267,6 +213657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 188 - 143 @@ -212333,6 +213724,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -212379,6 +213771,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 174 - 131 @@ -212445,6 +213838,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -212491,6 +213885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 187 - 143 @@ -214483,6 +215878,137 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 455161799} +--- !u!1 &455343982 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 455343983} + - component: {fileID: 455343987} + - component: {fileID: 455343986} + - component: {fileID: 455343985} + - component: {fileID: 455343984} + m_Layer: 5 + m_Name: "btn_\u73AF\u5F62\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &455343983 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 455343982} + 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: 112197435} + m_Father: {fileID: 1984073382} + 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: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &455343984 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 455343982} + 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 + delegates: [] +--- !u!114 &455343985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 455343982} + 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: 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 + 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: 455343986} + 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 &455343986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 455343982} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &455343987 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 455343982} --- !u!1 &455771157 GameObject: m_ObjectHideFlags: 0 @@ -215922,6 +217448,80 @@ RectTransform: m_AnchoredPosition: {x: -209.25, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &459940707 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 459940708} + - component: {fileID: 459940710} + - component: {fileID: 459940709} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &459940708 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 459940707} + 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: 340045595} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &459940709 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 459940707} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u5176\u4ED6" +--- !u!222 &459940710 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 459940707} --- !u!1 &460077335 GameObject: m_ObjectHideFlags: 0 @@ -216602,80 +218202,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 462267859} ---- !u!1 &462583855 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 462583856} - - component: {fileID: 462583858} - - component: {fileID: 462583857} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &462583856 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 462583855} - 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: 1433328759} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &462583857 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 462583855} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u67F1\u72B6\u56FE" ---- !u!222 &462583858 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 462583855} --- !u!1 &462616882 GameObject: m_ObjectHideFlags: 0 @@ -221729,6 +223255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -221774,6 +223301,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -221859,6 +223387,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -221905,6 +223434,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 23 @@ -221966,6 +223496,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -222012,6 +223543,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 81 @@ -222073,6 +223605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -222119,6 +223652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 85 @@ -222180,6 +223714,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -222226,6 +223761,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 88 @@ -222287,6 +223823,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -222333,6 +223870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 52 @@ -222405,6 +223943,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -222488,6 +224027,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -222572,6 +224112,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -222655,6 +224196,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -223065,7 +224607,7 @@ RectTransform: m_GameObject: {fileID: 473592950} 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: 1777407521} - {fileID: 1842937535} @@ -227276,7 +228818,7 @@ RectTransform: m_GameObject: {fileID: 484836155} 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: 449267886} m_RootOrder: 6 @@ -230799,6 +232341,137 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 493114147} +--- !u!1 &493280965 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 493280966} + - component: {fileID: 493280970} + - component: {fileID: 493280969} + - component: {fileID: 493280968} + - component: {fileID: 493280967} + m_Layer: 5 + m_Name: "btn_\u70ED\u529B\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &493280966 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 493280965} + 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: 431659540} + m_Father: {fileID: 1984073382} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &493280967 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 493280965} + 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 + delegates: [] +--- !u!114 &493280968 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 493280965} + 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: 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 + 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: 493280969} + 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 &493280969 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 493280965} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &493280970 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 493280965} --- !u!1 &493312824 GameObject: m_ObjectHideFlags: 0 @@ -238743,6 +240416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -238788,6 +240462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -238873,6 +240548,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -238919,6 +240595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -238980,6 +240657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -239026,6 +240704,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1081.1 @@ -239087,6 +240766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -239133,6 +240813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -239194,6 +240875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -239240,6 +240922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1019.7 @@ -239301,6 +240984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -239347,6 +241031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 492 @@ -239408,6 +241093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -239454,6 +241140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1511.6 @@ -239515,6 +241202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -239561,6 +241249,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -239635,6 +241324,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -239723,6 +241413,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -239807,6 +241498,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -239890,6 +241582,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -249098,7 +250791,7 @@ RectTransform: m_GameObject: {fileID: 547193114} 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: 2057043785} m_RootOrder: 6 @@ -249962,7 +251655,7 @@ RectTransform: m_GameObject: {fileID: 549209593} 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: 279109201} m_RootOrder: 1 @@ -249970,7 +251663,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 12, y: 19.333332} + m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &549209595 MonoBehaviour: @@ -250004,7 +251697,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 1 + m_Text: Text --- !u!222 &549209596 CanvasRenderer: m_ObjectHideFlags: 0 @@ -251444,6 +253137,137 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 551943919} +--- !u!1 &551974267 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 551974268} + - component: {fileID: 551974272} + - component: {fileID: 551974271} + - component: {fileID: 551974270} + - component: {fileID: 551974269} + m_Layer: 5 + m_Name: "btn_\u96F7\u8FBE\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &551974268 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 551974267} + 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: 199037492} + m_Father: {fileID: 1984073382} + 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: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &551974269 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 551974267} + 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 + delegates: [] +--- !u!114 &551974270 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 551974267} + 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: 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 + 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: 551974271} + 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 &551974271 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 551974267} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &551974272 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 551974267} --- !u!1 &551993054 GameObject: m_ObjectHideFlags: 0 @@ -254001,6 +255825,150 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &560687080 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 560687081} + - component: {fileID: 560687085} + - component: {fileID: 560687084} + - component: {fileID: 560687083} + - component: {fileID: 560687082} + m_Layer: 0 + m_Name: "1_\u5B9E\u9645\u5F00\u9500" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &560687081 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 560687080} + 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: 605284507} + - {fileID: 95831927} + m_Father: {fileID: 971520527} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 86, y: 14} + m_Pivot: {x: 1, y: 1} +--- !u!114 &560687082 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 560687080} + 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 &560687083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 560687080} + 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: 560687084} + 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 &560687084 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 560687080} + 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 &560687085 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 560687080} --- !u!1 &561250077 GameObject: m_ObjectHideFlags: 0 @@ -255683,6 +257651,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &564636827 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 564636828} + - component: {fileID: 564636830} + - component: {fileID: 564636829} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &564636828 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 564636827} + 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: 1347497222} + 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: 64, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &564636829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 564636827} + 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: legend3 +--- !u!222 &564636830 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 564636827} --- !u!1 &564923920 GameObject: m_ObjectHideFlags: 0 @@ -258757,80 +260799,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 573218490} ---- !u!1 &573258046 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 573258047} - - component: {fileID: 573258049} - - component: {fileID: 573258048} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &573258047 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 573258046} - 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: 662702352} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &573258048 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 573258046} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u6563\u70B9\u56FE" ---- !u!222 &573258049 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 573258046} --- !u!1 &573393196 GameObject: m_ObjectHideFlags: 0 @@ -260448,6 +262416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -260493,6 +262462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -260578,6 +262548,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -260624,6 +262595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -260685,6 +262657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -260731,6 +262704,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 200 @@ -260792,6 +262766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -260838,6 +262813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - -90.97 @@ -260899,6 +262875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -260945,6 +262922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 80 @@ -261006,6 +262984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -261052,6 +263031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 285.5 @@ -261113,6 +263093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -261159,6 +263140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 110 @@ -261220,6 +263202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -261266,6 +263249,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 275.4 @@ -261340,6 +263324,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -261428,6 +263413,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -261519,6 +263505,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -261602,6 +263589,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -262330,6 +264318,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -262375,6 +264364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -262460,6 +264450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -262506,6 +264497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 105.2 @@ -262568,6 +264560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -262614,6 +264607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 153.4 - 42 @@ -262885,6 +264879,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -262930,6 +264925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -263015,6 +265011,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263061,6 +265058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.2 - 51.6 @@ -263128,6 +265126,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263174,6 +265173,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.5 - 59 @@ -263241,6 +265241,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263287,6 +265288,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.5 - 49.2 @@ -263354,6 +265356,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263400,6 +265403,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157 - 63 @@ -263467,6 +265471,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263513,6 +265518,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 155.8 - 53.6 @@ -263580,6 +265586,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263626,6 +265633,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170 - 59 @@ -263693,6 +265701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263739,6 +265748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.1 - 47.6 @@ -263806,6 +265816,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263852,6 +265863,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166 - 69.8 @@ -263919,6 +265931,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -263965,6 +265978,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 176.2 - 66.8 @@ -264032,6 +266046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264078,6 +266093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160.2 - 75.2 @@ -264145,6 +266161,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264191,6 +266208,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.5 - 55.2 @@ -264252,6 +266270,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264298,6 +266317,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.9 - 54.2 @@ -264359,6 +266379,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264405,6 +266426,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.9 - 62.5 @@ -264466,6 +266488,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264512,6 +266535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 153.4 - 42 @@ -264573,6 +266597,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264619,6 +266644,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 50 @@ -264680,6 +266706,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264726,6 +266753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 147.2 - 49.8 @@ -264787,6 +266815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264833,6 +266862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.2 - 49.2 @@ -264894,6 +266924,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -264940,6 +266971,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175 - 73.2 @@ -265001,6 +267033,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265047,6 +267080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157 - 47.8 @@ -265108,6 +267142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265154,6 +267189,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 68.8 @@ -265215,6 +267251,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265261,6 +267298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.5 - 50.6 @@ -265322,6 +267360,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265368,6 +267407,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175 - 82.5 @@ -265429,6 +267469,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265475,6 +267516,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166.8 - 57.2 @@ -265536,6 +267578,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265582,6 +267625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 176.5 - 87.8 @@ -265643,6 +267687,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265689,6 +267734,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 72.8 @@ -265750,6 +267796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265796,6 +267843,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 174 - 54.5 @@ -265857,6 +267905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -265903,6 +267952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 173 - 59.8 @@ -265964,6 +268014,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266010,6 +268061,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 179.9 - 67.3 @@ -266071,6 +268123,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266117,6 +268170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.5 - 67.8 @@ -266178,6 +268232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266224,6 +268279,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 47 @@ -266285,6 +268341,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266331,6 +268388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 154.4 - 46.2 @@ -266392,6 +268450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266438,6 +268497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162 - 55 @@ -266499,6 +268559,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266545,6 +268606,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 176.5 - 83 @@ -266606,6 +268668,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266652,6 +268715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 54.4 @@ -266713,6 +268777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266759,6 +268824,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 152 - 45.8 @@ -266820,6 +268886,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266866,6 +268933,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.1 - 53.6 @@ -266927,6 +268995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -266973,6 +269042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170 - 73.2 @@ -267034,6 +269104,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267080,6 +269151,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160.2 - 52.1 @@ -267141,6 +269213,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267187,6 +269260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.3 - 67.9 @@ -267248,6 +269322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267294,6 +269369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166.4 - 56.6 @@ -267355,6 +269431,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267401,6 +269478,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 62.3 @@ -267462,6 +269540,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267508,6 +269587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.8 - 58.5 @@ -267569,6 +269649,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267615,6 +269696,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 54.5 @@ -267676,6 +269758,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267722,6 +269805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 50.2 @@ -267783,6 +269867,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267829,6 +269914,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.3 - 60.3 @@ -267890,6 +269976,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -267936,6 +270023,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 58.3 @@ -267997,6 +270085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268043,6 +270132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 56.2 @@ -268104,6 +270194,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268150,6 +270241,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 50.2 @@ -268211,6 +270303,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268257,6 +270350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170 - 72.9 @@ -268318,6 +270412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268364,6 +270459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 59.8 @@ -268425,6 +270521,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268471,6 +270568,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 61 @@ -268532,6 +270630,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268578,6 +270677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160.7 - 69.1 @@ -268639,6 +270739,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268685,6 +270786,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.2 - 55.9 @@ -268746,6 +270848,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268792,6 +270895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 152.4 - 46.5 @@ -268853,6 +270957,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -268899,6 +271004,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 54.3 @@ -268960,6 +271066,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269006,6 +271113,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.3 - 54.8 @@ -269067,6 +271175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269113,6 +271222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 180.3 - 60.7 @@ -269174,6 +271284,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269220,6 +271331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.5 - 60 @@ -269281,6 +271393,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269327,6 +271440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165 - 62 @@ -269388,6 +271502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269434,6 +271549,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164.5 - 60.3 @@ -269495,6 +271611,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269541,6 +271658,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 156 - 52.7 @@ -269602,6 +271720,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269648,6 +271767,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 74.3 @@ -269709,6 +271829,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269755,6 +271876,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163 - 62 @@ -269816,6 +271938,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269862,6 +271985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.7 - 73.1 @@ -269923,6 +272047,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -269969,6 +272094,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161 - 80 @@ -270030,6 +272156,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270076,6 +272203,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162 - 54.7 @@ -270137,6 +272265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270183,6 +272312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166 - 53.2 @@ -270244,6 +272374,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270290,6 +272421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 174 - 75.7 @@ -270351,6 +272483,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270397,6 +272530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 61.1 @@ -270458,6 +272592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270504,6 +272639,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 55.7 @@ -270565,6 +272701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270611,6 +272748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 151.1 - 48.7 @@ -270672,6 +272810,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270718,6 +272857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164.5 - 52.3 @@ -270779,6 +272919,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270825,6 +272966,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.5 - 50 @@ -270886,6 +273028,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -270932,6 +273075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 152 - 59.3 @@ -270993,6 +273137,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271039,6 +273184,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 169 - 62.5 @@ -271100,6 +273246,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271146,6 +273293,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164 - 55.7 @@ -271207,6 +273355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271253,6 +273402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.2 - 54.8 @@ -271314,6 +273464,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271360,6 +273511,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 155 - 45.9 @@ -271421,6 +273573,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271467,6 +273620,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170 - 70.6 @@ -271528,6 +273682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271574,6 +273729,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 176.2 - 67.2 @@ -271635,6 +273791,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271681,6 +273838,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170 - 69.4 @@ -271742,6 +273900,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271788,6 +273947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.5 - 58.2 @@ -271849,6 +274009,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -271895,6 +274056,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.3 - 64.8 @@ -271956,6 +274118,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272002,6 +274165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164.1 - 71.6 @@ -272063,6 +274227,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272109,6 +274274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 169.5 - 52.8 @@ -272170,6 +274336,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272216,6 +274383,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.2 - 59.8 @@ -272277,6 +274445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272323,6 +274492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 154.5 - 49 @@ -272384,6 +274554,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272430,6 +274601,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.8 - 50 @@ -272491,6 +274663,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272537,6 +274710,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 173.2 - 69.2 @@ -272598,6 +274772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272644,6 +274819,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170 - 55.9 @@ -272705,6 +274881,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272751,6 +274928,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.4 - 63.4 @@ -272812,6 +274990,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272858,6 +275037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 169 - 58.2 @@ -272919,6 +275099,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -272965,6 +275146,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166.2 - 58.6 @@ -273026,6 +275208,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273072,6 +275255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.4 - 45.7 @@ -273133,6 +275317,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273179,6 +275364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.5 - 52.2 @@ -273240,6 +275426,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273286,6 +275473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159 - 48.6 @@ -273347,6 +275535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273393,6 +275582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.8 - 57.8 @@ -273454,6 +275644,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273500,6 +275691,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159 - 55.6 @@ -273561,6 +275753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273607,6 +275800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 179.8 - 66.8 @@ -273668,6 +275862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273714,6 +275909,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.9 - 59.4 @@ -273775,6 +275971,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273821,6 +276018,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161 - 53.6 @@ -273882,6 +276080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -273928,6 +276127,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 151.1 - 73.2 @@ -273989,6 +276189,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274035,6 +276236,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.2 - 53.4 @@ -274096,6 +276298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274142,6 +276345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 69 @@ -274203,6 +276407,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274249,6 +276454,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 173.2 - 58.4 @@ -274310,6 +276516,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274356,6 +276563,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 171.8 - 56.2 @@ -274417,6 +276625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274463,6 +276672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 178 - 70.6 @@ -274524,6 +276734,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274570,6 +276781,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164.3 - 59.8 @@ -274631,6 +276843,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274677,6 +276890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163 - 72 @@ -274738,6 +276952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274784,6 +276999,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.5 - 65.2 @@ -274845,6 +277061,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274891,6 +277108,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166.8 - 56.6 @@ -274952,6 +277170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -274998,6 +277217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 105.2 @@ -275059,6 +277279,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275105,6 +277326,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.5 - 51.8 @@ -275166,6 +277388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275212,6 +277435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 169.4 - 63.4 @@ -275273,6 +277497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275319,6 +277544,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.8 - 59 @@ -275380,6 +277606,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275426,6 +277653,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.5 - 47.6 @@ -275487,6 +277715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275533,6 +277762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 63 @@ -275594,6 +277824,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275640,6 +277871,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.2 - 55.2 @@ -275701,6 +277933,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275747,6 +277980,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 45 @@ -275808,6 +278042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275854,6 +278089,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.2 - 54 @@ -275915,6 +278151,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -275961,6 +278198,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.2 - 50.2 @@ -276022,6 +278260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276068,6 +278307,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.3 - 60.2 @@ -276129,6 +278369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276175,6 +278416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 149.5 - 44.8 @@ -276236,6 +278478,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276282,6 +278525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 58.8 @@ -276343,6 +278587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276389,6 +278634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.2 - 56.4 @@ -276450,6 +278696,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276496,6 +278743,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 62 @@ -276557,6 +278805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276603,6 +278852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 155 - 49.2 @@ -276664,6 +278914,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276710,6 +278961,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 156.5 - 67.2 @@ -276771,6 +279023,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276817,6 +279070,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164 - 53.8 @@ -276878,6 +279132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -276924,6 +279179,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160.9 - 54.4 @@ -276985,6 +279241,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277031,6 +279288,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.8 - 58 @@ -277092,6 +279350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277138,6 +279397,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167 - 59.8 @@ -277199,6 +279459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277245,6 +279506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 54.8 @@ -277306,6 +279568,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277352,6 +279615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 43.2 @@ -277413,6 +279677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277459,6 +279724,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 60.5 @@ -277520,6 +279786,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277566,6 +279833,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 158.2 - 46.4 @@ -277627,6 +279895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277673,6 +279942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 156 - 64.4 @@ -277734,6 +280004,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277780,6 +280051,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 48.8 @@ -277841,6 +280113,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277887,6 +280160,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.1 - 62.2 @@ -277948,6 +280222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -277994,6 +280269,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 158 - 55.5 @@ -278055,6 +280331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278101,6 +280378,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 57.8 @@ -278162,6 +280440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278208,6 +280487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 156 - 54.6 @@ -278269,6 +280549,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278315,6 +280596,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.1 - 59.2 @@ -278376,6 +280658,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278422,6 +280705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 173.4 - 52.7 @@ -278483,6 +280767,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278529,6 +280814,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.8 - 53.2 @@ -278590,6 +280876,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278636,6 +280923,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.5 - 64.5 @@ -278697,6 +280985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278743,6 +281032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.2 - 51.8 @@ -278804,6 +281094,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278850,6 +281141,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 56 @@ -278911,6 +281203,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -278957,6 +281250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.3 - 63.6 @@ -279018,6 +281312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279064,6 +281359,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 63.2 @@ -279125,6 +281421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279171,6 +281468,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 59.5 @@ -279232,6 +281530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279278,6 +281577,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 56.8 @@ -279339,6 +281639,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279385,6 +281686,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 64.1 @@ -279446,6 +281748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279492,6 +281795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 50 @@ -279553,6 +281857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279599,6 +281904,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 72.3 @@ -279660,6 +281966,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279706,6 +282013,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166.4 - 55 @@ -279767,6 +282075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279813,6 +282122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 55.9 @@ -279874,6 +282184,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -279920,6 +282231,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 152.4 - 60.4 @@ -279981,6 +282293,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280027,6 +282340,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 69.1 @@ -280088,6 +282402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280134,6 +282449,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 84.5 @@ -280195,6 +282511,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280241,6 +282558,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 55.9 @@ -280302,6 +282620,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280348,6 +282667,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 158.8 - 55.5 @@ -280409,6 +282729,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280455,6 +282776,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 69.5 @@ -280516,6 +282838,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280562,6 +282885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 76.4 @@ -280623,6 +282947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280669,6 +282994,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 61.4 @@ -280730,6 +283056,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280776,6 +283103,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 65.9 @@ -280837,6 +283165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280883,6 +283212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 156.2 - 58.6 @@ -280944,6 +283274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -280990,6 +283321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.2 - 66.8 @@ -281051,6 +283383,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281097,6 +283430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.1 - 56.6 @@ -281158,6 +283492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281204,6 +283539,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 58.6 @@ -281265,6 +283601,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281311,6 +283648,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 55.9 @@ -281372,6 +283710,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281418,6 +283757,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 59.1 @@ -281479,6 +283819,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281525,6 +283866,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 182.9 - 81.8 @@ -281586,6 +283928,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281632,6 +283975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 166.4 - 70.7 @@ -281693,6 +284037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281739,6 +284084,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 56.8 @@ -281800,6 +284146,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281846,6 +284193,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 177.8 - 60 @@ -281907,6 +284255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -281953,6 +284302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 58.2 @@ -282014,6 +284364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282060,6 +284411,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.3 - 72.7 @@ -282121,6 +284473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282167,6 +284520,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 154.9 - 54.1 @@ -282228,6 +284582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282274,6 +284629,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 158.8 - 49.1 @@ -282335,6 +284691,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282381,6 +284738,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 75.9 @@ -282442,6 +284800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282488,6 +284847,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 55 @@ -282549,6 +284909,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282595,6 +284956,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.3 - 57.3 @@ -282656,6 +285018,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282702,6 +285065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 55 @@ -282763,6 +285127,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282809,6 +285174,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 65.5 @@ -282870,6 +285236,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -282916,6 +285283,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.3 - 65.5 @@ -282977,6 +285345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283023,6 +285392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 48.6 @@ -283084,6 +285454,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283130,6 +285501,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.8 - 58.6 @@ -283191,6 +285563,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283237,6 +285610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 63.6 @@ -283298,6 +285672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283344,6 +285719,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 55.2 @@ -283405,6 +285781,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283451,6 +285828,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 62.7 @@ -283512,6 +285890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283558,6 +285937,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 56.6 @@ -283619,6 +285999,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283665,6 +286046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 53.9 @@ -283726,6 +286108,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283772,6 +286155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164.5 - 63.2 @@ -283833,6 +286217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283879,6 +286264,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 176.5 - 73.6 @@ -283940,6 +286326,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -283986,6 +286373,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 62 @@ -284047,6 +286435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284093,6 +286482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.3 - 63.6 @@ -284154,6 +286544,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284200,6 +286591,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 159.4 - 53.2 @@ -284261,6 +286653,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284307,6 +286700,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 53.4 @@ -284368,6 +286762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284414,6 +286809,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 55 @@ -284475,6 +286871,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284521,6 +286918,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 70.5 @@ -284582,6 +286980,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284628,6 +287027,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 54.5 @@ -284689,6 +287089,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284735,6 +287136,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 54.5 @@ -284796,6 +287198,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284842,6 +287245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160.7 - 55.9 @@ -284903,6 +287307,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -284949,6 +287354,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 59 @@ -285010,6 +287416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285056,6 +287463,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 63.6 @@ -285117,6 +287525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285163,6 +287572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 54.5 @@ -285224,6 +287634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285270,6 +287681,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 152.4 - 47.3 @@ -285331,6 +287743,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285377,6 +287790,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 67.7 @@ -285438,6 +287852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285484,6 +287899,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 80.9 @@ -285545,6 +287961,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285591,6 +288008,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 70.5 @@ -285652,6 +288070,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285698,6 +288117,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 60.9 @@ -285759,6 +288179,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285805,6 +288226,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 63.6 @@ -285866,6 +288288,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -285912,6 +288335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 54.5 @@ -285973,6 +288397,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286019,6 +288444,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 59.1 @@ -286080,6 +288506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286126,6 +288553,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.3 - 70.5 @@ -286187,6 +288615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286233,6 +288662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 52.7 @@ -286294,6 +288724,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286340,6 +288771,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 62.7 @@ -286401,6 +288833,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286447,6 +288880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 86.3 @@ -286508,6 +288942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286554,6 +288989,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 66.4 @@ -286615,6 +289051,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286661,6 +289098,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 152.4 - 67.3 @@ -286722,6 +289160,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286768,6 +289207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 168.9 - 63 @@ -286829,6 +289269,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286875,6 +289316,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 73.6 @@ -286936,6 +289378,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -286982,6 +289425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.2 - 62.3 @@ -287043,6 +289487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287089,6 +289534,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.2 - 57.7 @@ -287150,6 +289596,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287196,6 +289643,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 55.4 @@ -287257,6 +289705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287303,6 +289752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 104.1 @@ -287364,6 +289814,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287410,6 +289861,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 174 - 55.5 @@ -287471,6 +289923,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287517,6 +289970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 170.2 - 77.3 @@ -287578,6 +290032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287624,6 +290079,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 80.5 @@ -287685,6 +290141,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287731,6 +290188,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 64.5 @@ -287792,6 +290250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287838,6 +290297,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 72.3 @@ -287899,6 +290359,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -287945,6 +290406,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 167.6 - 61.4 @@ -288006,6 +290468,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288052,6 +290515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 154.9 - 58.2 @@ -288113,6 +290577,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288159,6 +290624,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 81.8 @@ -288220,6 +290686,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288266,6 +290733,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.3 - 63.6 @@ -288327,6 +290795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288373,6 +290842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 171.4 - 53.4 @@ -288434,6 +290904,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288480,6 +290951,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 54.5 @@ -288541,6 +291013,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288587,6 +291060,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 165.1 - 53.6 @@ -288648,6 +291122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288694,6 +291169,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 60 @@ -288755,6 +291231,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288801,6 +291278,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 174 - 73.6 @@ -288862,6 +291340,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -288908,6 +291387,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 61.4 @@ -288969,6 +291449,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289015,6 +291496,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 174 - 55.5 @@ -289076,6 +291558,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289122,6 +291605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 63.6 @@ -289183,6 +291667,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289229,6 +291714,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 161.3 - 60.9 @@ -289290,6 +291776,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289336,6 +291823,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 156.2 - 60 @@ -289397,6 +291885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289443,6 +291932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 149.9 - 46.8 @@ -289504,6 +291994,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289550,6 +292041,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 169.5 - 57.3 @@ -289611,6 +292103,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289657,6 +292150,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 64.1 @@ -289718,6 +292212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289764,6 +292259,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 175.3 - 63.6 @@ -289825,6 +292321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289871,6 +292368,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 169.5 - 67.3 @@ -289932,6 +292430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -289978,6 +292477,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160 - 75.5 @@ -290039,6 +292539,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290085,6 +292586,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 172.7 - 68.2 @@ -290146,6 +292648,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290192,6 +292695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 162.6 - 61.4 @@ -290253,6 +292757,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290299,6 +292804,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 157.5 - 76.8 @@ -290360,6 +292866,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290406,6 +292913,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 176.5 - 71.8 @@ -290467,6 +292975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290513,6 +293022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 164.4 - 55.5 @@ -290574,6 +293084,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290620,6 +293131,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 160.7 - 48.6 @@ -290681,6 +293193,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290727,6 +293240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 174 - 66.4 @@ -290788,6 +293302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -290834,6 +293349,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 163.8 - 67.3 @@ -290907,6 +293423,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -290990,6 +293507,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -291074,6 +293592,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -291157,6 +293676,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -292024,7 +294544,7 @@ RectTransform: m_GameObject: {fileID: 577564334} 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: 2057043785} m_RootOrder: 10 @@ -292501,6 +295021,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 578873859} +--- !u!1 &578982815 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 578982816} + - component: {fileID: 578982818} + - component: {fileID: 578982817} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &578982816 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 578982815} + 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: 2070068176} + 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: 64, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &578982817 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 578982815} + 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: legend2 +--- !u!222 &578982818 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 578982815} --- !u!1 &579039416 GameObject: m_ObjectHideFlags: 0 @@ -293274,7 +295868,7 @@ RectTransform: m_GameObject: {fileID: 580361152} 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: 2057043785} m_RootOrder: 9 @@ -294670,7 +297264,7 @@ RectTransform: m_GameObject: {fileID: 583892133} 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: 1072376770} - {fileID: 1122289577} @@ -295483,7 +298077,7 @@ RectTransform: m_GameObject: {fileID: 585766400} 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: 2057043785} m_RootOrder: 11 @@ -296090,6 +298684,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -296135,6 +298730,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -296220,6 +298816,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -296266,6 +298863,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 15.0349045 @@ -296327,6 +298925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -296373,6 +298972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 15.069799 @@ -296434,6 +299034,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -296480,6 +299081,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 15.1046715 @@ -296541,6 +299143,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -296587,6 +299190,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 15.139513 @@ -296648,6 +299252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -296694,6 +299299,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 15.174312 @@ -296755,6 +299361,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -296801,6 +299408,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 15.209057 @@ -296862,6 +299470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -296908,6 +299517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 15.243739 @@ -296969,6 +299579,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297015,6 +299626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 15.278346 @@ -297076,6 +299688,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297122,6 +299735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 15.312869 @@ -297183,6 +299797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297229,6 +299844,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 15.347297 @@ -297290,6 +299906,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297336,6 +299953,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 15.381618 @@ -297397,6 +300015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297443,6 +300062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 15.415823 @@ -297504,6 +300124,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297550,6 +300171,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 15.449903 @@ -297611,6 +300233,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297657,6 +300280,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 15.483844 @@ -297718,6 +300342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297764,6 +300389,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 15.517638 @@ -297825,6 +300451,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297871,6 +300498,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 15.551274 @@ -297932,6 +300560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -297978,6 +300607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 15.5847435 @@ -298039,6 +300669,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298085,6 +300716,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 15.618034 @@ -298146,6 +300778,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298192,6 +300825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 15.651136 @@ -298253,6 +300887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298299,6 +300934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 15.68404 @@ -298360,6 +300996,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298406,6 +301043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 15.716736 @@ -298467,6 +301105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298513,6 +301152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 15.749213 @@ -298574,6 +301214,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298620,6 +301261,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 15.781463 @@ -298681,6 +301323,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298727,6 +301370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 15.813474 @@ -298788,6 +301432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298834,6 +301479,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 15.845237 @@ -298895,6 +301541,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -298941,6 +301588,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 15.876742 @@ -299002,6 +301650,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -299048,6 +301697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 15.907981 @@ -299109,6 +301759,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -299155,6 +301806,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 15.938943 @@ -299216,6 +301868,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -299262,6 +301915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 15.969619 @@ -299323,6 +301977,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -299369,6 +302024,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 16 @@ -299466,6 +302122,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -299549,6 +302206,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -299633,6 +302291,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -299716,6 +302375,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -301662,75 +304322,6 @@ RectTransform: m_AnchoredPosition: {x: -120.08333, y: -44.428574} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &592192547 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 592192548} - - component: {fileID: 592192550} - - component: {fileID: 592192549} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &592192548 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 592192547} - 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: 1871911090} - m_Father: {fileID: 994371094} - 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: 64, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &592192549 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 592192547} - 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 &592192550 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 592192547} --- !u!1 &592260585 GameObject: m_ObjectHideFlags: 0 @@ -303161,6 +305752,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 596182875} +--- !u!1 &596483468 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 596483469} + - component: {fileID: 596483471} + - component: {fileID: 596483470} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &596483469 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 596483468} + 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: 181735819} + 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: 80, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &596483470 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 596483468} + 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: "\u67D0\u4E3B\u98DF\u624B\u673A" +--- !u!222 &596483471 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 596483468} --- !u!1 &596646638 GameObject: m_ObjectHideFlags: 0 @@ -303338,150 +306003,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &596907896 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 596907897} - - component: {fileID: 596907901} - - component: {fileID: 596907900} - - component: {fileID: 596907899} - - component: {fileID: 596907898} - m_Layer: 0 - m_Name: 2_legend3 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &596907897 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 596907896} - 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: 1578813260} - - {fileID: 1876641487} - m_Father: {fileID: 1518182042} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -52} - m_SizeDelta: {x: 90, y: 16} - m_Pivot: {x: 1, y: 1} ---- !u!114 &596907898 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 596907896} - 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 &596907899 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 596907896} - 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: 596907900} - 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 &596907900 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 596907896} - 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 &596907901 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 596907896} --- !u!1 &597084794 GameObject: m_ObjectHideFlags: 0 @@ -304818,7 +307339,7 @@ RectTransform: m_GameObject: {fileID: 600412703} 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: 728272766} - {fileID: 237027647} @@ -306526,137 +309047,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 604563919} ---- !u!1 &604728881 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 604728882} - - component: {fileID: 604728886} - - component: {fileID: 604728885} - - component: {fileID: 604728884} - - component: {fileID: 604728883} - m_Layer: 5 - m_Name: "btn_\u9996\u9875" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &604728882 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 604728881} - 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: 119906256} - m_Father: {fileID: 1984073382} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &604728883 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 604728881} - 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 - delegates: [] ---- !u!114 &604728884 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 604728881} - 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: 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 - 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: 604728885} - 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 &604728885 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 604728881} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &604728886 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 604728881} --- !u!1 &604972135 GameObject: m_ObjectHideFlags: 0 @@ -306914,6 +309304,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 605140981} +--- !u!1 &605284506 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 605284507} + - component: {fileID: 605284509} + - component: {fileID: 605284508} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &605284507 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 605284506} + 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: 560687081} + 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 &605284508 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 605284506} + 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 &605284509 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 605284506} --- !u!1 &605310817 GameObject: m_ObjectHideFlags: 0 @@ -313396,150 +315854,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 622915637} ---- !u!1 &622949152 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 622949153} - - component: {fileID: 622949157} - - component: {fileID: 622949156} - - component: {fileID: 622949155} - - component: {fileID: 622949154} - m_Layer: 0 - m_Name: "0_\u56FE\u4E00" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &622949153 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 622949152} - 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: 972295329} - - {fileID: 1575333951} - m_Father: {fileID: 38397381} - 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: -88.5, y: 0} - m_SizeDelta: {x: 54, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &622949154 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 622949152} - 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 &622949155 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 622949152} - 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: 622949156} - 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 &622949156 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 622949152} - 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 &622949157 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 622949152} --- !u!1 &623034406 GameObject: m_ObjectHideFlags: 0 @@ -315834,6 +318148,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -315879,6 +318194,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -315964,6 +318280,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -316010,6 +318327,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -316071,6 +318389,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -316117,6 +318436,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1250 @@ -316178,6 +318498,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -316224,6 +318545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 896.7 @@ -316285,6 +318607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -316331,6 +318654,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1029.27 @@ -316392,6 +318716,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -316438,6 +318763,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1290 @@ -316499,6 +318825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -316545,6 +318872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1530 @@ -316606,6 +318934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -316652,6 +318981,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 903.2 @@ -316870,6 +319200,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -316915,6 +319246,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -317000,6 +319332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -317046,6 +319379,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -317107,6 +319441,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -317153,6 +319488,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 388.6 @@ -317214,6 +319550,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -317260,6 +319597,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1069.8 @@ -317321,6 +319659,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -317367,6 +319706,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1216.7 @@ -317428,6 +319768,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -317474,6 +319815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 839.9 @@ -317535,6 +319877,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -317581,6 +319924,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 742 @@ -317642,6 +319986,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -317688,6 +320033,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1108.1 @@ -317762,6 +320108,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -317850,6 +320197,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -317941,6 +320289,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -318024,6 +320373,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -322311,6 +324661,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -322356,6 +324707,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -322441,6 +324793,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -322487,6 +324840,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 10 @@ -322548,6 +324902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -322594,6 +324949,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 5 @@ -322655,6 +325011,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -322701,6 +325058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 15 @@ -322762,6 +325120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -322808,6 +325167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 25 @@ -322869,6 +325229,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -322915,6 +325276,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 20 @@ -322976,6 +325338,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -323022,6 +325385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 35 @@ -323083,6 +325447,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -323129,6 +325494,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 30 @@ -323190,6 +325556,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -323236,6 +325603,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 40 @@ -323458,6 +325826,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -323503,6 +325872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -323588,6 +325958,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -323634,6 +326005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 10 @@ -323695,6 +326067,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -323741,6 +326114,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 5 @@ -323802,6 +326176,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -323848,6 +326223,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 15 @@ -323909,6 +326285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -323955,6 +326332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 25 @@ -324016,6 +326394,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -324062,6 +326441,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 20 @@ -324123,6 +326503,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -324169,6 +326550,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 35 @@ -324230,6 +326612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -324276,6 +326659,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 30 @@ -324337,6 +326721,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -324383,6 +326768,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 40 @@ -326724,7 +329110,7 @@ RectTransform: m_GameObject: {fileID: 643903685} 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: 1054323460} m_Father: {fileID: 1910686491} @@ -328603,7 +330989,7 @@ RectTransform: m_GameObject: {fileID: 648783497} m_LocalRotation: {x: 0, y: 0, z: 0.53383595, w: 0.8455881} 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: 1910686491} m_RootOrder: 14 @@ -329107,150 +331493,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &650241769 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 650241770} - - component: {fileID: 650241774} - - component: {fileID: 650241773} - - component: {fileID: 650241772} - - component: {fileID: 650241771} - m_Layer: 0 - m_Name: 0_legend1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &650241770 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 650241769} - 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: 1026193310} - - {fileID: 1115561176} - m_Father: {fileID: 1518182042} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 90, y: 16} - m_Pivot: {x: 1, y: 1} ---- !u!114 &650241771 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 650241769} - 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 &650241772 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 650241769} - 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: 650241773} - 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 &650241773 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 650241769} - 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 &650241774 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 650241769} --- !u!1 &650527765 GameObject: m_ObjectHideFlags: 0 @@ -331112,6 +333354,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -331157,6 +333400,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -331242,6 +333486,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -331288,6 +333533,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -331349,6 +333595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -331395,6 +333642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1033 @@ -331456,6 +333704,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -331502,6 +333751,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -331563,6 +333813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -331609,6 +333860,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1107 @@ -331670,6 +333922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -331716,6 +333969,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1492 @@ -331777,6 +334031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -331823,6 +334078,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1559 @@ -331884,6 +334140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -331930,6 +334187,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -332148,6 +334406,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -332193,6 +334452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -332278,6 +334538,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -332324,6 +334585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1820 @@ -332385,6 +334647,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -332431,6 +334694,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 2033 @@ -332492,6 +334756,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -332538,6 +334803,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1901 @@ -332599,6 +334865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -332645,6 +334912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 2107 @@ -332706,6 +334974,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -332752,6 +335021,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 3492 @@ -332813,6 +335083,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -332859,6 +335130,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 2559 @@ -332920,6 +335192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -332966,6 +335239,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1920 @@ -333040,6 +335314,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -333128,6 +335403,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -333212,6 +335488,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -333295,6 +335572,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -336488,7 +338766,7 @@ RectTransform: m_GameObject: {fileID: 661726146} 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: 2057043785} m_RootOrder: 26 @@ -336743,137 +339021,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 662166007} ---- !u!1 &662702351 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 662702352} - - component: {fileID: 662702356} - - component: {fileID: 662702355} - - component: {fileID: 662702354} - - component: {fileID: 662702353} - m_Layer: 5 - m_Name: "btn_\u6563\u70B9\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &662702352 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 662702351} - 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: 573258047} - m_Father: {fileID: 1984073382} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &662702353 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 662702351} - 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 - delegates: [] ---- !u!114 &662702354 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 662702351} - 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: 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 - 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: 662702355} - 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 &662702355 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 662702351} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &662702356 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 662702351} --- !u!1 &662734563 GameObject: m_ObjectHideFlags: 0 @@ -342715,7 +344862,7 @@ RectTransform: m_GameObject: {fileID: 676810247} 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: 1736760738} - {fileID: 68684017} @@ -344565,7 +346712,7 @@ RectTransform: m_GameObject: {fileID: 682065651} 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: 1078410190} m_RootOrder: 8 @@ -345258,80 +347405,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 684186741} ---- !u!1 &684224144 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 684224145} - - component: {fileID: 684224147} - - component: {fileID: 684224146} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &684224145 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 684224144} - 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: 138103305} - 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: 64, y: 20} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &684224146 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 684224144} - 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: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: legend4 ---- !u!222 &684224147 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 684224144} --- !u!1 &684249752 GameObject: m_ObjectHideFlags: 0 @@ -347047,6 +349120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -347092,6 +349166,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -347177,6 +349252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -347223,6 +349299,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 335 @@ -347284,6 +349361,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -347330,6 +349408,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 310 @@ -347391,6 +349470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -347437,6 +349517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 234 @@ -347498,6 +349579,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -347544,6 +349626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 135 @@ -347605,6 +349688,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -347651,6 +349735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1548 @@ -350770,80 +352855,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 695403160} ---- !u!1 &695417661 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 695417662} - - component: {fileID: 695417664} - - component: {fileID: 695417663} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &695417662 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 695417661} - 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: 259972368} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &695417663 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 695417661} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u6298\u7EBF\u56FE" ---- !u!222 &695417664 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 695417661} --- !u!1 &695861318 GameObject: m_ObjectHideFlags: 0 @@ -357748,6 +359759,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 716408756} +--- !u!1 &716672855 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 716672856} + - component: {fileID: 716672858} + - component: {fileID: 716672857} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &716672856 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 716672855} + 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: 830865162} + m_Father: {fileID: 1129222745} + 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: 32, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &716672857 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 716672855} + 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 &716672858 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 716672855} --- !u!1 &717215802 GameObject: m_ObjectHideFlags: 0 @@ -360136,6 +362216,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 723564609} +--- !u!1 &723588090 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 723588091} + - component: {fileID: 723588093} + - component: {fileID: 723588092} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &723588091 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 723588090} + 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: 1046295484} + 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: 24, y: 12} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &723588092 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 723588090} + 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 &723588093 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 723588090} --- !u!1 &723727851 GameObject: m_ObjectHideFlags: 0 @@ -362693,6 +364841,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -362738,6 +364887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -362823,6 +364973,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -362869,6 +365020,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 73 - 95 @@ -362930,6 +365082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -362976,6 +365129,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 37 @@ -363037,6 +365191,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363083,6 +365238,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 61 - 40 @@ -363144,6 +365300,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363190,6 +365347,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 55 - 86 @@ -363251,6 +365409,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363297,6 +365456,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 23 @@ -363358,6 +365518,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363404,6 +365565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 74 - 29 @@ -363465,6 +365627,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363511,6 +365674,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 96 - 26 @@ -363572,6 +365736,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363618,6 +365783,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 95 - 93 @@ -363679,6 +365845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363725,6 +365892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 14 @@ -363786,6 +365954,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -363832,6 +366001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 83 - 78 @@ -363899,6 +366069,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -363982,6 +366153,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -364066,6 +366238,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -364149,6 +366322,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -365794,7 +367968,7 @@ RectTransform: m_GameObject: {fileID: 731950523} 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: 449267886} m_RootOrder: 5 @@ -369182,7 +371356,7 @@ RectTransform: m_GameObject: {fileID: 742009663} 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: 1640796314} m_RootOrder: 13 @@ -370827,6 +373001,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 746026873} +--- !u!1 &746051520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 746051521} + - component: {fileID: 746051523} + - component: {fileID: 746051522} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &746051521 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 746051520} + 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: 1393307350} + 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: 48, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &746051522 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 746051520} + 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: "\u964D\u6C34\u91CF" +--- !u!222 &746051523 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 746051520} --- !u!1 &746181587 GameObject: m_ObjectHideFlags: 0 @@ -376170,7 +378418,7 @@ RectTransform: m_GameObject: {fileID: 760564082} 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: 1107243629} m_RootOrder: 13 @@ -376607,6 +378855,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 761780043} +--- !u!1 &762081868 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 762081869} + - component: {fileID: 762081871} + - component: {fileID: 762081870} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &762081869 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 762081868} + 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: 1485720193} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &762081870 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 762081868} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u6298\u7EBF\u56FE" +--- !u!222 &762081871 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 762081868} --- !u!1 &762122835 GameObject: m_ObjectHideFlags: 0 @@ -377556,7 +379878,7 @@ RectTransform: m_GameObject: {fileID: 764130259} 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: 2057043785} m_RootOrder: 31 @@ -381979,7 +384301,7 @@ RectTransform: m_GameObject: {fileID: 777057777} 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: 2057043785} m_RootOrder: 30 @@ -384251,6 +386573,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -384296,6 +386619,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -384381,6 +386705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -384427,6 +386752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -384488,6 +386814,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -384534,6 +386861,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1250 @@ -384595,6 +386923,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -384641,6 +386970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 896.7 @@ -384702,6 +387032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -384748,6 +387079,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - -600 @@ -384809,6 +387141,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -384855,6 +387188,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1290 @@ -384916,6 +387250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -384962,6 +387297,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1530 @@ -385023,6 +387359,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -385069,6 +387406,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 903.2 @@ -385143,6 +387481,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -385231,6 +387570,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -385315,6 +387655,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -385398,6 +387739,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -389170,7 +391512,7 @@ RectTransform: m_GameObject: {fileID: 791156442} 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: 1078410190} m_RootOrder: 5 @@ -394419,6 +396761,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &806460680 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 806460681} + - component: {fileID: 806460683} + - component: {fileID: 806460682} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &806460681 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 806460680} + 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: 1017904540} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &806460682 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 806460680} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u9996\u9875" +--- !u!222 &806460683 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 806460680} --- !u!1 &806499598 GameObject: m_ObjectHideFlags: 0 @@ -395080,7 +397496,7 @@ RectTransform: m_GameObject: {fileID: 808065006} 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: 534932112} m_Father: {fileID: 988304553} @@ -396545,7 +398961,7 @@ RectTransform: m_GameObject: {fileID: 811895507} 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: 1108461955} - {fileID: 1143839099} @@ -396555,9 +398971,9 @@ 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_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &812173396 @@ -399874,7 +402290,7 @@ RectTransform: m_GameObject: {fileID: 820594315} 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: 449267886} m_RootOrder: 3 @@ -402686,150 +405102,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 830732897} ---- !u!1 &830820007 +--- !u!1 &830865161 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} serializedVersion: 5 m_Component: - - component: {fileID: 830820008} - - component: {fileID: 830820012} - - component: {fileID: 830820011} - - component: {fileID: 830820010} - - component: {fileID: 830820009} + - component: {fileID: 830865162} + - component: {fileID: 830865164} + - component: {fileID: 830865163} m_Layer: 0 - m_Name: 1_legend2 + m_Name: Text m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &830820008 +--- !u!224 &830865162 RectTransform: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 830820007} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 830865161} + 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: 849981534} - - {fileID: 981534938} - m_Father: {fileID: 1518182042} - m_RootOrder: 1 + m_Children: [] + m_Father: {fileID: 716672856} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -26} - m_SizeDelta: {x: 90, y: 16} - m_Pivot: {x: 1, y: 1} ---- !u!114 &830820009 + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 32, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &830865163 MonoBehaviour: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 830820007} + m_GameObject: {fileID: 830865161} 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 &830820010 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 830820007} - 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: 830820011} - 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 &830820011 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 830820007} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0, g: 0, b: 0, a: 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_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 &830820012 + 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: "\u5F20\u4E09" +--- !u!222 &830865164 CanvasRenderer: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 830820007} + m_GameObject: {fileID: 830865161} --- !u!1 &831013492 GameObject: m_ObjectHideFlags: 0 @@ -403108,7 +405454,7 @@ RectTransform: m_GameObject: {fileID: 831937384} 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: 1078410190} m_RootOrder: 6 @@ -403952,80 +406298,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 834455843} ---- !u!1 &834489250 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 834489251} - - component: {fileID: 834489253} - - component: {fileID: 834489252} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &834489251 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 834489250} - 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: 1492978655} - 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: 32, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &834489252 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 834489250} - 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: "\u674E\u56DB" ---- !u!222 &834489253 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 834489250} --- !u!224 &834546373 RectTransform: m_ObjectHideFlags: 0 @@ -408650,74 +410922,6 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &846087251 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 846087252} - - component: {fileID: 846087254} - - component: {fileID: 846087253} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &846087252 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 846087251} - 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: 994371094} - 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 &846087253 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 846087251} - 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 &846087254 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 846087251} --- !u!1 &846155764 GameObject: m_ObjectHideFlags: 0 @@ -410507,74 +412711,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 849795083} ---- !u!1 &849981533 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 849981534} - - component: {fileID: 849981536} - - component: {fileID: 849981535} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &849981534 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 849981533} - 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: 830820008} - 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: 24, y: 12} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &849981535 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 849981533} - 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 &849981536 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 849981533} --- !u!1 &850153538 GameObject: m_ObjectHideFlags: 0 @@ -411863,80 +413999,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 853530425} ---- !u!1 &853864520 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 853864521} - - component: {fileID: 853864523} - - component: {fileID: 853864522} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &853864521 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 853864520} - 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: 117762804} - 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: 64, y: 20} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &853864522 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 853864520} - 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: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: legend5 ---- !u!222 &853864523 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 853864520} --- !u!1 &854013363 GameObject: m_ObjectHideFlags: 0 @@ -412268,74 +414330,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 854770955} ---- !u!1 &854818262 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 854818263} - - component: {fileID: 854818265} - - component: {fileID: 854818264} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &854818263 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 854818262} - 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: 875529678} - 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 &854818264 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 854818262} - 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 &854818265 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 854818262} --- !u!1 &854927223 GameObject: m_ObjectHideFlags: 0 @@ -414301,6 +416295,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 860806933} +--- !u!1 &860933078 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 860933079} + - component: {fileID: 860933083} + - component: {fileID: 860933082} + - component: {fileID: 860933081} + - component: {fileID: 860933080} + m_Layer: 0 + m_Name: 4_legend5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &860933079 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 860933078} + 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: 1083895254} + - {fileID: 309338721} + m_Father: {fileID: 1518182042} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -104} + m_SizeDelta: {x: 90, y: 16} + m_Pivot: {x: 1, y: 1} +--- !u!114 &860933080 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 860933078} + 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 &860933081 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 860933078} + 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: 860933082} + 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 &860933082 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 860933078} + 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 &860933083 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 860933078} --- !u!1 &860952414 GameObject: m_ObjectHideFlags: 0 @@ -416338,7 +418476,7 @@ RectTransform: m_GameObject: {fileID: 866281858} 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: 1640796314} m_RootOrder: 10 @@ -417686,7 +419824,7 @@ RectTransform: m_GameObject: {fileID: 869001953} 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: 2057043785} m_RootOrder: 29 @@ -420010,7 +422148,7 @@ RectTransform: m_GameObject: {fileID: 874471554} 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: 1050293135} - {fileID: 1366633068} @@ -420448,150 +422586,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 875502692} ---- !u!1 &875529677 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 875529678} - - component: {fileID: 875529682} - - component: {fileID: 875529681} - - component: {fileID: 875529680} - - component: {fileID: 875529679} - m_Layer: 0 - m_Name: "0_\u67D0\u8F6F\u4EF6" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &875529678 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 875529677} - 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: 854818263} - - {fileID: 1800425253} - m_Father: {fileID: 1267491321} - 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: -182, y: 0} - m_SizeDelta: {x: 70, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &875529679 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 875529677} - 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 &875529680 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 875529677} - 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: 875529681} - 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 &875529681 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 875529677} - 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 &875529682 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 875529677} --- !u!1 &875812594 GameObject: m_ObjectHideFlags: 0 @@ -422986,7 +424980,7 @@ RectTransform: m_GameObject: {fileID: 881760594} m_LocalRotation: {x: 0, y: 0, z: 0.54068094, w: 0.8412278} 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: 1910686491} m_RootOrder: 11 @@ -424177,6 +426171,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -424222,6 +426217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -424307,6 +426303,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -424353,6 +426350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 120 @@ -424414,6 +426412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -424460,6 +426459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 50 - 200 @@ -424521,6 +426521,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -424567,6 +426568,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 50 @@ -424641,6 +426643,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -424729,6 +426732,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -424813,6 +426817,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -424896,6 +426901,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -428357,80 +430363,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 890457870} ---- !u!1 &890572958 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 890572959} - - component: {fileID: 890572961} - - component: {fileID: 890572960} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &890572959 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 890572958} - 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: 1166094915} - 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: 64, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &890572960 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 890572958} - 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: "\u5B9E\u9645\u5F00\u9500" ---- !u!222 &890572961 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 890572958} --- !u!1 &890997740 GameObject: m_ObjectHideFlags: 0 @@ -431834,6 +433766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -431879,6 +433812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -431964,6 +433898,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -432010,6 +433945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -432072,6 +434008,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -432118,6 +434055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -432180,6 +434118,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -432226,6 +434165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -434769,150 +436709,6 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &906316175 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 906316176} - - component: {fileID: 906316180} - - component: {fileID: 906316179} - - component: {fileID: 906316178} - - component: {fileID: 906316177} - m_Layer: 0 - m_Name: "1_\u56FE\u4E8C" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &906316176 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 906316175} - 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: 1382470257} - - {fileID: 2137836894} - m_Father: {fileID: 38397381} - 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: -29.5, y: 0} - m_SizeDelta: {x: 54, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &906316177 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 906316175} - 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 &906316178 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 906316175} - 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: 906316179} - 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 &906316179 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 906316175} - 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 &906316180 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 906316175} --- !u!1 &906556697 GameObject: m_ObjectHideFlags: 0 @@ -435234,74 +437030,6 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &907082770 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 907082771} - - component: {fileID: 907082773} - - component: {fileID: 907082772} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &907082771 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 907082770} - 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: 1446344905} - 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: 24, y: 12} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &907082772 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 907082770} - 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.83137256, g: 0.50980395, b: 0.39607844, 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 &907082773 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 907082770} --- !u!1 &907180731 GameObject: m_ObjectHideFlags: 0 @@ -437074,7 +438802,7 @@ RectTransform: m_GameObject: {fileID: 912031622} 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: 90796886} m_RootOrder: 1 @@ -437082,7 +438810,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 12, y: 19.333332} + m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &912031624 MonoBehaviour: @@ -437116,7 +438844,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 7 + m_Text: Text --- !u!222 &912031625 CanvasRenderer: m_ObjectHideFlags: 0 @@ -437608,7 +439336,7 @@ RectTransform: m_GameObject: {fileID: 913393818} 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: 449267886} m_RootOrder: 1 @@ -438815,7 +440543,7 @@ RectTransform: m_GameObject: {fileID: 916094505} m_LocalRotation: {x: 0, y: 0, z: -0.23259673, w: 0.9725733} 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: 926932800} m_RootOrder: 9 @@ -442251,80 +443979,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 924024123} ---- !u!1 &924078036 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 924078037} - - component: {fileID: 924078039} - - component: {fileID: 924078038} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &924078037 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 924078036} - 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: 1795029631} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &924078038 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 924078036} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u4EEA\u8868\u76D8" ---- !u!222 &924078039 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 924078036} --- !u!1 &924249371 GameObject: m_ObjectHideFlags: 0 @@ -442953,15 +444607,15 @@ RectTransform: m_GameObject: {fileID: 925486926} 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: 1210514592} m_Father: {fileID: 1910686491} m_RootOrder: 17 m_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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} --- !u!1 &925520597 @@ -444021,6 +445675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -444066,6 +445721,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -444151,6 +445807,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -444197,6 +445854,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4300 - 10000 @@ -444263,6 +445921,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -444309,6 +445968,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5000 - 14000 @@ -445128,137 +446788,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 928225615} ---- !u!1 &928295663 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 928295664} - - component: {fileID: 928295668} - - component: {fileID: 928295667} - - component: {fileID: 928295666} - - component: {fileID: 928295665} - m_Layer: 5 - m_Name: "btn_\u70ED\u529B\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &928295664 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 928295663} - 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: 322331551} - m_Father: {fileID: 1984073382} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &928295665 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 928295663} - 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 - delegates: [] ---- !u!114 &928295666 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 928295663} - 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: 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 - 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: 928295667} - 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 &928295667 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 928295663} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &928295668 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 928295663} --- !u!1 &928388371 GameObject: m_ObjectHideFlags: 0 @@ -446438,6 +447967,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -446483,6 +448013,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -446568,6 +448099,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -446614,6 +448146,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -446675,6 +448208,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -446721,6 +448255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 132 @@ -446782,6 +448317,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -446828,6 +448364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 101 @@ -446889,6 +448426,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -446935,6 +448473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 134 @@ -446996,6 +448535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -447042,6 +448582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 90 @@ -447103,6 +448644,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -447149,6 +448691,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 230 @@ -447210,6 +448753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -447256,6 +448800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 210 @@ -447474,6 +449019,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -447519,6 +449065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -447604,6 +449151,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -447650,6 +449198,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 220 @@ -447711,6 +449260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -447757,6 +449307,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 282 @@ -447818,6 +449369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -447864,6 +449416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 201 @@ -447925,6 +449478,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -447971,6 +449525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 234 @@ -448032,6 +449587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -448078,6 +449634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 290 @@ -448139,6 +449696,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -448185,6 +449743,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 430 @@ -448246,6 +449805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -448292,6 +449852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 410 @@ -448510,6 +450071,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -448555,6 +450117,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -448640,6 +450203,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -448686,6 +450250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 450 @@ -448747,6 +450312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -448793,6 +450359,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 432 @@ -448854,6 +450421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -448900,6 +450468,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 401 @@ -448961,6 +450530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -449007,6 +450577,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 454 @@ -449068,6 +450639,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -449114,6 +450686,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 590 @@ -449175,6 +450748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -449221,6 +450795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 530 @@ -449282,6 +450857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -449328,6 +450904,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 510 @@ -449402,6 +450979,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -449490,6 +451068,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -449574,6 +451153,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -449657,6 +451237,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -451345,7 +452926,7 @@ RectTransform: m_GameObject: {fileID: 935933591} 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: 292197394} - {fileID: 227843788} @@ -451390,7 +452971,7 @@ RectTransform: m_GameObject: {fileID: 936242088} m_LocalRotation: {x: 0, y: 0, z: 0.84689, w: 0.53176814} 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: 1910686491} m_RootOrder: 13 @@ -452309,6 +453890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -452354,6 +453936,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -452439,6 +454022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -452485,6 +454069,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 140 @@ -452546,6 +454131,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -452592,6 +454178,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 240 @@ -452653,6 +454240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -452699,6 +454287,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 180 @@ -452760,6 +454349,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -452806,6 +454396,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 100 @@ -452867,6 +454458,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -452913,6 +454505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 90 @@ -452974,6 +454567,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -453020,6 +454614,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 170 @@ -453081,6 +454676,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -453127,6 +454723,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 180 @@ -453345,6 +454942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -453390,6 +454988,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -453475,6 +455074,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -453521,6 +455121,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -453582,6 +455183,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -453628,6 +455230,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 200 @@ -453689,6 +455292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -453735,6 +455339,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 150 @@ -453796,6 +455401,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -453842,6 +455448,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 80 @@ -453903,6 +455510,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -453949,6 +455557,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 70 @@ -454010,6 +455619,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -454056,6 +455666,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 110 @@ -454117,6 +455728,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -454163,6 +455775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 130 @@ -454237,6 +455850,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -454325,6 +455939,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -454409,6 +456024,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -454492,6 +456108,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -456759,74 +458376,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 943687724} ---- !u!1 &943770287 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 943770288} - - component: {fileID: 943770290} - - component: {fileID: 943770289} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &943770288 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 943770287} - 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: 1027321808} - 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: 24, y: 12} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &943770289 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 943770287} - 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.5686275, g: 0.78039217, b: 0.68235296, 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 &943770290 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 943770287} --- !u!1 &943816225 GameObject: m_ObjectHideFlags: 0 @@ -457635,6 +459184,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 945686563} +--- !u!1 &945893679 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 945893680} + - component: {fileID: 945893684} + - component: {fileID: 945893683} + - component: {fileID: 945893682} + - component: {fileID: 945893681} + m_Layer: 0 + m_Name: "1_\u67D0\u4E3B\u98DF\u624B\u673A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &945893680 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 945893679} + 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: 140637542} + - {fileID: 181735819} + m_Father: {fileID: 1267491321} + 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: -91, y: 0} + m_SizeDelta: {x: 102, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &945893681 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 945893679} + 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 &945893682 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 945893679} + 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: 945893683} + 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 &945893683 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 945893679} + 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 &945893684 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 945893679} --- !u!1 &946115397 GameObject: m_ObjectHideFlags: 0 @@ -458720,6 +460413,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -458765,6 +460459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -458850,6 +460545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -458896,6 +460592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 300 @@ -458957,6 +460654,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -459003,6 +460701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 300 @@ -459064,6 +460763,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -459110,6 +460810,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 300 @@ -459171,6 +460872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -459217,6 +460919,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 300 @@ -459278,6 +460981,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -459324,6 +461028,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 300 @@ -459385,6 +461090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -459431,6 +461137,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 300 @@ -459492,6 +461199,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -459538,6 +461246,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 300 @@ -459756,6 +461465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -459801,6 +461511,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -459886,6 +461597,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -459932,6 +461644,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -459993,6 +461706,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -460039,6 +461753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 250 @@ -460100,6 +461815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -460146,6 +461862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 150 @@ -460207,6 +461924,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -460253,6 +461971,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 120 @@ -460314,6 +462033,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -460360,6 +462080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 70 @@ -460421,6 +462142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -460467,6 +462189,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 110 @@ -460528,6 +462251,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -460574,6 +462298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 280 @@ -460648,6 +462373,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -460736,6 +462462,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -460820,6 +462547,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -460903,6 +462631,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -462636,7 +464365,7 @@ RectTransform: m_GameObject: {fileID: 953096501} 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: 1640796314} m_RootOrder: 11 @@ -465056,6 +466785,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 960413083} +--- !u!1 &960536012 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 960536013} + - component: {fileID: 960536015} + - component: {fileID: 960536014} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &960536013 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960536012} + 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: 1469244905} + 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: 64, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &960536014 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960536012} + 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: legend1 +--- !u!222 &960536015 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960536012} --- !u!1 &960655654 GameObject: m_ObjectHideFlags: 0 @@ -465592,6 +467395,150 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &963198141 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 963198142} + - component: {fileID: 963198146} + - component: {fileID: 963198145} + - component: {fileID: 963198144} + - component: {fileID: 963198143} + m_Layer: 0 + m_Name: 0_legend1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &963198142 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198141} + 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: 1904723354} + - {fileID: 1469244905} + m_Father: {fileID: 1518182042} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 90, y: 16} + m_Pivot: {x: 1, y: 1} +--- !u!114 &963198143 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198141} + 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 &963198144 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198141} + 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: 963198145} + 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 &963198145 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198141} + 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 &963198146 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198141} --- !u!1 &963538056 GameObject: m_ObjectHideFlags: 0 @@ -466204,150 +468151,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 964651906} ---- !u!1 &964698835 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 964698836} - - component: {fileID: 964698840} - - component: {fileID: 964698839} - - component: {fileID: 964698838} - - component: {fileID: 964698837} - m_Layer: 0 - m_Name: "3_\u674E\u56DB" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &964698836 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 964698835} - 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: 1900663003} - - {fileID: 1492978655} - m_Father: {fileID: 38397381} - m_RootOrder: 3 - 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: 88.5, y: 0} - m_SizeDelta: {x: 54, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &964698837 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 964698835} - 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 &964698838 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 964698835} - 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: 964698839} - 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 &964698839 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 964698835} - 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 &964698840 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 964698835} --- !u!1 &964940819 GameObject: m_ObjectHideFlags: 0 @@ -467544,7 +469347,7 @@ RectTransform: m_GameObject: {fileID: 968870040} 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: 973548031} - {fileID: 1614501136} @@ -469084,10 +470887,10 @@ RectTransform: m_GameObject: {fileID: 971520526} 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: 994371094} - - {fileID: 1923053469} + - {fileID: 2089140508} + - {fileID: 560687081} m_Father: {fileID: 1640796314} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -469318,74 +471121,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 972085673} ---- !u!1 &972295328 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 972295329} - - component: {fileID: 972295331} - - component: {fileID: 972295330} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &972295329 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 972295328} - 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: 622949153} - 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 &972295330 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 972295328} - 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 &972295331 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 972295328} --- !u!1 &972320843 GameObject: m_ObjectHideFlags: 0 @@ -472344,75 +474079,6 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &981534937 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 981534938} - - component: {fileID: 981534940} - - component: {fileID: 981534939} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &981534938 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 981534937} - 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: 257544907} - m_Father: {fileID: 830820008} - 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: 26, y: 0} - m_SizeDelta: {x: 64, y: 16} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &981534939 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 981534937} - 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 &981534940 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 981534937} --- !u!1 &981605439 GameObject: m_ObjectHideFlags: 0 @@ -475307,6 +476973,7 @@ MonoBehaviour: m_BorderWidth: 1 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -475352,6 +477019,7 @@ MonoBehaviour: m_BorderWidth: 1 m_BorderColor: {r: 0, g: 0, b: 0, a: 1} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -475437,6 +477105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -475483,6 +477152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 0 @@ -475545,6 +477215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -475591,6 +477262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1 @@ -475653,6 +477325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -475699,6 +477372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 2 @@ -475761,6 +477435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -475807,6 +477482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 3 @@ -475869,6 +477545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -475915,6 +477592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 4 @@ -475977,6 +477655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476023,6 +477702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 5 @@ -476085,6 +477765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476131,6 +477812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 6 @@ -476193,6 +477875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476239,6 +477922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 7 @@ -476301,6 +477985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476347,6 +478032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 8 @@ -476409,6 +478095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476455,6 +478142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 9 @@ -476517,6 +478205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476563,6 +478252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 10 @@ -476625,6 +478315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476671,6 +478362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 11 @@ -476733,6 +478425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476779,6 +478472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 12 @@ -476841,6 +478535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476887,6 +478582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 13 @@ -476949,6 +478645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -476995,6 +478692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 14 @@ -477057,6 +478755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477103,6 +478802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 15 @@ -477165,6 +478865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477211,6 +478912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 16 @@ -477273,6 +478975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477319,6 +479022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 17 @@ -477381,6 +479085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477427,6 +479132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 18 @@ -477489,6 +479195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477535,6 +479242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 19 @@ -477597,6 +479305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477643,6 +479352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 20 @@ -477705,6 +479415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477751,6 +479462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 21 @@ -477813,6 +479525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477859,6 +479572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 0 @@ -477921,6 +479635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -477967,6 +479682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1 @@ -478029,6 +479745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478075,6 +479792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 2 @@ -478137,6 +479855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478183,6 +479902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 3 @@ -478245,6 +479965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478291,6 +480012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 4 @@ -478353,6 +480075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478399,6 +480122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 5 @@ -478461,6 +480185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478507,6 +480232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 6 @@ -478569,6 +480295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478615,6 +480342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 7 @@ -478677,6 +480405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478723,6 +480452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 8 @@ -478785,6 +480515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478831,6 +480562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 9 @@ -478893,6 +480625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -478939,6 +480672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 10 @@ -479001,6 +480735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479047,6 +480782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 11 @@ -479109,6 +480845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479155,6 +480892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 12 @@ -479217,6 +480955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479263,6 +481002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 13 @@ -479325,6 +481065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479371,6 +481112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 14 @@ -479433,6 +481175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479479,6 +481222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 15 @@ -479541,6 +481285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479587,6 +481332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 16 @@ -479649,6 +481395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479695,6 +481442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 17 @@ -479757,6 +481505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479803,6 +481552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 18 @@ -479865,6 +481615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -479911,6 +481662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 19 @@ -479973,6 +481725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480019,6 +481772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 20 @@ -480081,6 +481835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480127,6 +481882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 21 @@ -480189,6 +481945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480235,6 +481992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 0 @@ -480297,6 +482055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480343,6 +482102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1 @@ -480405,6 +482165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480451,6 +482212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 2 @@ -480513,6 +482275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480559,6 +482322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 3 @@ -480621,6 +482385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480667,6 +482432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 4 @@ -480729,6 +482495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480775,6 +482542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 5 @@ -480837,6 +482605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480883,6 +482652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 6 @@ -480945,6 +482715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -480991,6 +482762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 7 @@ -481053,6 +482825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481099,6 +482872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 8 @@ -481161,6 +482935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481207,6 +482982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 9 @@ -481269,6 +483045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481315,6 +483092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 10 @@ -481377,6 +483155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481423,6 +483202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 11 @@ -481485,6 +483265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481531,6 +483312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 12 @@ -481593,6 +483375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481639,6 +483422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 13 @@ -481701,6 +483485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481747,6 +483532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 14 @@ -481809,6 +483595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481855,6 +483642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 15 @@ -481917,6 +483705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -481963,6 +483752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 16 @@ -482025,6 +483815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482071,6 +483862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 17 @@ -482133,6 +483925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482179,6 +483972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 18 @@ -482241,6 +484035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482287,6 +484082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 19 @@ -482349,6 +484145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482395,6 +484192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 20 @@ -482457,6 +484255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482503,6 +484302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 21 @@ -482565,6 +484365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482611,6 +484412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 0 @@ -482673,6 +484475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482719,6 +484522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1 @@ -482781,6 +484585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482827,6 +484632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 2 @@ -482889,6 +484695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -482935,6 +484742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 3 @@ -482997,6 +484805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483043,6 +484852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 4 @@ -483105,6 +484915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483151,6 +484962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 5 @@ -483213,6 +485025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483259,6 +485072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 6 @@ -483321,6 +485135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483367,6 +485182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 7 @@ -483429,6 +485245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483475,6 +485292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 8 @@ -483537,6 +485355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483583,6 +485402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 9 @@ -483645,6 +485465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483691,6 +485512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 10 @@ -483753,6 +485575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483799,6 +485622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 11 @@ -483861,6 +485685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -483907,6 +485732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 12 @@ -483969,6 +485795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484015,6 +485842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 13 @@ -484077,6 +485905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484123,6 +485952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 14 @@ -484185,6 +486015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484231,6 +486062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 15 @@ -484293,6 +486125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484339,6 +486172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 16 @@ -484401,6 +486235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484447,6 +486282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 17 @@ -484509,6 +486345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484555,6 +486392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 18 @@ -484617,6 +486455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484663,6 +486502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 19 @@ -484725,6 +486565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484771,6 +486612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 20 @@ -484833,6 +486675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484879,6 +486722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 21 @@ -484941,6 +486785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -484987,6 +486832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 0 @@ -485049,6 +486895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485095,6 +486942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1 @@ -485157,6 +487005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485203,6 +487052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 2 @@ -485265,6 +487115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485311,6 +487162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 3 @@ -485373,6 +487225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485419,6 +487272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 4 @@ -485481,6 +487335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485527,6 +487382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 5 @@ -485589,6 +487445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485635,6 +487492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 6 @@ -485697,6 +487555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485743,6 +487602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 7 @@ -485805,6 +487665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485851,6 +487712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 8 @@ -485913,6 +487775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -485959,6 +487822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 9 @@ -486021,6 +487885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486067,6 +487932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 10 @@ -486129,6 +487995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486175,6 +488042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 11 @@ -486237,6 +488105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486283,6 +488152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 12 @@ -486345,6 +488215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486391,6 +488262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 13 @@ -486453,6 +488325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486499,6 +488372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 14 @@ -486561,6 +488435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486607,6 +488482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 15 @@ -486669,6 +488545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486715,6 +488592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 16 @@ -486777,6 +488655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486823,6 +488702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 17 @@ -486885,6 +488765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -486931,6 +488812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 18 @@ -486993,6 +488875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487039,6 +488922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 19 @@ -487101,6 +488985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487147,6 +489032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 20 @@ -487209,6 +489095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487255,6 +489142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 21 @@ -487317,6 +489205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487363,6 +489252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 0 @@ -487425,6 +489315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487471,6 +489362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1 @@ -487533,6 +489425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487579,6 +489472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 2 @@ -487641,6 +489535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487687,6 +489582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 3 @@ -487749,6 +489645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487795,6 +489692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 4 @@ -487857,6 +489755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -487903,6 +489802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 5 @@ -487965,6 +489865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488011,6 +489912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 6 @@ -488073,6 +489975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488119,6 +490022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 7 @@ -488181,6 +490085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488227,6 +490132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 8 @@ -488289,6 +490195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488335,6 +490242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 9 @@ -488397,6 +490305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488443,6 +490352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 10 @@ -488505,6 +490415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488551,6 +490462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 11 @@ -488613,6 +490525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488659,6 +490572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 12 @@ -488721,6 +490635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488767,6 +490682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 13 @@ -488829,6 +490745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488875,6 +490792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 14 @@ -488937,6 +490855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -488983,6 +490902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 15 @@ -489045,6 +490965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489091,6 +491012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 16 @@ -489153,6 +491075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489199,6 +491122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 17 @@ -489261,6 +491185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489307,6 +491232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 18 @@ -489369,6 +491295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489415,6 +491342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 19 @@ -489477,6 +491405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489523,6 +491452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 20 @@ -489585,6 +491515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489631,6 +491562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 21 @@ -489693,6 +491625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489739,6 +491672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 0 @@ -489801,6 +491735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489847,6 +491782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1 @@ -489909,6 +491845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -489955,6 +491892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 2 @@ -490017,6 +491955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490063,6 +492002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 3 @@ -490125,6 +492065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490171,6 +492112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 4 @@ -490233,6 +492175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490279,6 +492222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 5 @@ -490341,6 +492285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490387,6 +492332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 6 @@ -490449,6 +492395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490495,6 +492442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 7 @@ -490557,6 +492505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490603,6 +492552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 8 @@ -490665,6 +492615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490711,6 +492662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 9 @@ -490773,6 +492725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490819,6 +492772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 10 @@ -490881,6 +492835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -490927,6 +492882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 11 @@ -490989,6 +492945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491035,6 +492992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 12 @@ -491097,6 +493055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491143,6 +493102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 13 @@ -491205,6 +493165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491251,6 +493212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 14 @@ -491313,6 +493275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491359,6 +493322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 15 @@ -491421,6 +493385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491467,6 +493432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 16 @@ -491529,6 +493495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491575,6 +493542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 17 @@ -491637,6 +493605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491683,6 +493652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 18 @@ -491745,6 +493715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491791,6 +493762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 19 @@ -491853,6 +493825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -491899,6 +493872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 20 @@ -491961,6 +493935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492007,6 +493982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 21 @@ -492069,6 +494045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492115,6 +494092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 0 @@ -492177,6 +494155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492223,6 +494202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 1 @@ -492285,6 +494265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492331,6 +494312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 2 @@ -492393,6 +494375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492439,6 +494422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 3 @@ -492501,6 +494485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492547,6 +494532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 4 @@ -492609,6 +494595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492655,6 +494642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 5 @@ -492717,6 +494705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492763,6 +494752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 6 @@ -492825,6 +494815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492871,6 +494862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 7 @@ -492933,6 +494925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -492979,6 +494972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 8 @@ -493041,6 +495035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493087,6 +495082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 9 @@ -493149,6 +495145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493195,6 +495192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 10 @@ -493257,6 +495255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493303,6 +495302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 11 @@ -493365,6 +495365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493411,6 +495412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 12 @@ -493473,6 +495475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493519,6 +495522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 13 @@ -493581,6 +495585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493627,6 +495632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 14 @@ -493689,6 +495695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493735,6 +495742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 15 @@ -493797,6 +495805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493843,6 +495852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 16 @@ -493905,6 +495915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -493951,6 +495962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 17 @@ -494013,6 +496025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494059,6 +496072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 18 @@ -494121,6 +496135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494167,6 +496182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 19 @@ -494229,6 +496245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494275,6 +496292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 20 @@ -494337,6 +496355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494383,6 +496402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 21 @@ -494445,6 +496465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494491,6 +496512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 0 @@ -494553,6 +496575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494599,6 +496622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 1 @@ -494661,6 +496685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494707,6 +496732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 2 @@ -494769,6 +496795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494815,6 +496842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 3 @@ -494877,6 +496905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -494923,6 +496952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 4 @@ -494985,6 +497015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495031,6 +497062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 5 @@ -495093,6 +497125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495139,6 +497172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 6 @@ -495201,6 +497235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495247,6 +497282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 7 @@ -495309,6 +497345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495355,6 +497392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 8 @@ -495417,6 +497455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495463,6 +497502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 9 @@ -495525,6 +497565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495571,6 +497612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 10 @@ -495633,6 +497675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495679,6 +497722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 11 @@ -495741,6 +497785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495787,6 +497832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 12 @@ -495849,6 +497895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -495895,6 +497942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 13 @@ -495957,6 +498005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496003,6 +498052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 14 @@ -496065,6 +498115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496111,6 +498162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 15 @@ -496173,6 +498225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496219,6 +498272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 16 @@ -496281,6 +498335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496327,6 +498382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 17 @@ -496389,6 +498445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496435,6 +498492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 18 @@ -496497,6 +498555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496543,6 +498602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 19 @@ -496605,6 +498665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496651,6 +498712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 20 @@ -496713,6 +498775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496759,6 +498822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 21 @@ -496821,6 +498885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496867,6 +498932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 0 @@ -496929,6 +498995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -496975,6 +499042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 1 @@ -497037,6 +499105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497083,6 +499152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 2 @@ -497145,6 +499215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497191,6 +499262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 3 @@ -497253,6 +499325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497299,6 +499372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 4 @@ -497361,6 +499435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497407,6 +499482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 5 @@ -497469,6 +499545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497515,6 +499592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 6 @@ -497577,6 +499655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497623,6 +499702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 7 @@ -497685,6 +499765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497731,6 +499812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 8 @@ -497793,6 +499875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497839,6 +499922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 9 @@ -497901,6 +499985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -497947,6 +500032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 10 @@ -498009,6 +500095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498055,6 +500142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 11 @@ -498117,6 +500205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498163,6 +500252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 12 @@ -498225,6 +500315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498271,6 +500362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 13 @@ -498333,6 +500425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498379,6 +500472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 14 @@ -498441,6 +500535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498487,6 +500582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 15 @@ -498549,6 +500645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498595,6 +500692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 16 @@ -498657,6 +500755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498703,6 +500802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 17 @@ -498765,6 +500865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498811,6 +500912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 18 @@ -498873,6 +500975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -498919,6 +501022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 19 @@ -498981,6 +501085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499027,6 +501132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 20 @@ -499089,6 +501195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499135,6 +501242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 21 @@ -499197,6 +501305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499243,6 +501352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 0 @@ -499305,6 +501415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499351,6 +501462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 1 @@ -499413,6 +501525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499459,6 +501572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 2 @@ -499521,6 +501635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499567,6 +501682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 3 @@ -499629,6 +501745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499675,6 +501792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 4 @@ -499737,6 +501855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499783,6 +501902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 5 @@ -499845,6 +501965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499891,6 +502012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 6 @@ -499953,6 +502075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -499999,6 +502122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 7 @@ -500061,6 +502185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500107,6 +502232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 8 @@ -500169,6 +502295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500215,6 +502342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 9 @@ -500277,6 +502405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500323,6 +502452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 10 @@ -500385,6 +502515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500431,6 +502562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 11 @@ -500493,6 +502625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500539,6 +502672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 12 @@ -500601,6 +502735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500647,6 +502782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 13 @@ -500709,6 +502845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500755,6 +502892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 14 @@ -500817,6 +502955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500863,6 +503002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 15 @@ -500925,6 +503065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -500971,6 +503112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 16 @@ -501033,6 +503175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501079,6 +503222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 17 @@ -501141,6 +503285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501187,6 +503332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 18 @@ -501249,6 +503395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501295,6 +503442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 19 @@ -501357,6 +503505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501403,6 +503552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 20 @@ -501465,6 +503615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501511,6 +503662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 21 @@ -501573,6 +503725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501619,6 +503772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 0 @@ -501681,6 +503835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501727,6 +503882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 1 @@ -501789,6 +503945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501835,6 +503992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 2 @@ -501897,6 +504055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -501943,6 +504102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 3 @@ -502005,6 +504165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502051,6 +504212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 4 @@ -502113,6 +504275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502159,6 +504322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 5 @@ -502221,6 +504385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502267,6 +504432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 6 @@ -502329,6 +504495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502375,6 +504542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 7 @@ -502437,6 +504605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502483,6 +504652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 8 @@ -502545,6 +504715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502591,6 +504762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 9 @@ -502653,6 +504825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502699,6 +504872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 10 @@ -502761,6 +504935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502807,6 +504982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 11 @@ -502869,6 +505045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -502915,6 +505092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 12 @@ -502977,6 +505155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503023,6 +505202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 13 @@ -503085,6 +505265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503131,6 +505312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 14 @@ -503193,6 +505375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503239,6 +505422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 15 @@ -503301,6 +505485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503347,6 +505532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 16 @@ -503409,6 +505595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503455,6 +505642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 17 @@ -503517,6 +505705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503563,6 +505752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 18 @@ -503625,6 +505815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503671,6 +505862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 19 @@ -503733,6 +505925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503779,6 +505972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 20 @@ -503841,6 +506035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503887,6 +506082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 21 @@ -503949,6 +506145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -503995,6 +506192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 0 @@ -504057,6 +506255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504103,6 +506302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 1 @@ -504165,6 +506365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504211,6 +506412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 2 @@ -504273,6 +506475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504319,6 +506522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 3 @@ -504381,6 +506585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504427,6 +506632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 4 @@ -504489,6 +506695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504535,6 +506742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 5 @@ -504597,6 +506805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504643,6 +506852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 6 @@ -504705,6 +506915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504751,6 +506962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 7 @@ -504813,6 +507025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504859,6 +507072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 8 @@ -504921,6 +507135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -504967,6 +507182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 9 @@ -505029,6 +507245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505075,6 +507292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 10 @@ -505137,6 +507355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505183,6 +507402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 11 @@ -505245,6 +507465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505291,6 +507512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 12 @@ -505353,6 +507575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505399,6 +507622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 13 @@ -505461,6 +507685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505507,6 +507732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 14 @@ -505569,6 +507795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505615,6 +507842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 15 @@ -505677,6 +507905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505723,6 +507952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 16 @@ -505785,6 +508015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505831,6 +508062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 17 @@ -505893,6 +508125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -505939,6 +508172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 18 @@ -506001,6 +508235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506047,6 +508282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 19 @@ -506109,6 +508345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506155,6 +508392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 20 @@ -506217,6 +508455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506263,6 +508502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 21 @@ -506325,6 +508565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506371,6 +508612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 0 @@ -506433,6 +508675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506479,6 +508722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 1 @@ -506541,6 +508785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506587,6 +508832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 2 @@ -506649,6 +508895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506695,6 +508942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 3 @@ -506757,6 +509005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506803,6 +509052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 4 @@ -506865,6 +509115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -506911,6 +509162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 5 @@ -506973,6 +509225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507019,6 +509272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 6 @@ -507081,6 +509335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507127,6 +509382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 7 @@ -507189,6 +509445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507235,6 +509492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 8 @@ -507297,6 +509555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507343,6 +509602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 9 @@ -507405,6 +509665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507451,6 +509712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 10 @@ -507513,6 +509775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507559,6 +509822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 11 @@ -507621,6 +509885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507667,6 +509932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 12 @@ -507729,6 +509995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507775,6 +510042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 13 @@ -507837,6 +510105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507883,6 +510152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 14 @@ -507945,6 +510215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -507991,6 +510262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 15 @@ -508053,6 +510325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508099,6 +510372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 16 @@ -508161,6 +510435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508207,6 +510482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 17 @@ -508269,6 +510545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508315,6 +510592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 18 @@ -508377,6 +510655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508423,6 +510702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 19 @@ -508485,6 +510765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508531,6 +510812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 20 @@ -508593,6 +510875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508639,6 +510922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 21 @@ -508701,6 +510985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508747,6 +511032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 0 @@ -508809,6 +511095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508855,6 +511142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 1 @@ -508917,6 +511205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -508963,6 +511252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 2 @@ -509025,6 +511315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509071,6 +511362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 3 @@ -509133,6 +511425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509179,6 +511472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 4 @@ -509241,6 +511535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509287,6 +511582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 5 @@ -509349,6 +511645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509395,6 +511692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 6 @@ -509457,6 +511755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509503,6 +511802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 7 @@ -509565,6 +511865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509611,6 +511912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 8 @@ -509673,6 +511975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509719,6 +512022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 9 @@ -509781,6 +512085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509827,6 +512132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 10 @@ -509889,6 +512195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -509935,6 +512242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 11 @@ -509997,6 +512305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510043,6 +512352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 12 @@ -510105,6 +512415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510151,6 +512462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 13 @@ -510213,6 +512525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510259,6 +512572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 14 @@ -510321,6 +512635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510367,6 +512682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 15 @@ -510429,6 +512745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510475,6 +512792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 16 @@ -510537,6 +512855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510583,6 +512902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 17 @@ -510645,6 +512965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510691,6 +513012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 18 @@ -510753,6 +513075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510799,6 +513122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 19 @@ -510861,6 +513185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -510907,6 +513232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 20 @@ -510969,6 +513295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511015,6 +513342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 21 @@ -511077,6 +513405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511123,6 +513452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 0 @@ -511185,6 +513515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511231,6 +513562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 1 @@ -511293,6 +513625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511339,6 +513672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 2 @@ -511401,6 +513735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511447,6 +513782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 3 @@ -511509,6 +513845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511555,6 +513892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 4 @@ -511617,6 +513955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511663,6 +514002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 5 @@ -511725,6 +514065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511771,6 +514112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 6 @@ -511833,6 +514175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511879,6 +514222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 7 @@ -511941,6 +514285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -511987,6 +514332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 8 @@ -512049,6 +514395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512095,6 +514442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 9 @@ -512157,6 +514505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512203,6 +514552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 10 @@ -512265,6 +514615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512311,6 +514662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 11 @@ -512373,6 +514725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512419,6 +514772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 12 @@ -512481,6 +514835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512527,6 +514882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 13 @@ -512589,6 +514945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512635,6 +514992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 14 @@ -512697,6 +515055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512743,6 +515102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 15 @@ -512805,6 +515165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512851,6 +515212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 16 @@ -512913,6 +515275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -512959,6 +515322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 17 @@ -513021,6 +515385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513067,6 +515432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 18 @@ -513129,6 +515495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513175,6 +515542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 19 @@ -513237,6 +515605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513283,6 +515652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 20 @@ -513345,6 +515715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513391,6 +515762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 21 @@ -513453,6 +515825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513499,6 +515872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 0 @@ -513561,6 +515935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513607,6 +515982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 1 @@ -513669,6 +516045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513715,6 +516092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 2 @@ -513777,6 +516155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513823,6 +516202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 3 @@ -513885,6 +516265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -513931,6 +516312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 4 @@ -513993,6 +516375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514039,6 +516422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 5 @@ -514101,6 +516485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514147,6 +516532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 6 @@ -514209,6 +516595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514255,6 +516642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 7 @@ -514317,6 +516705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514363,6 +516752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 8 @@ -514425,6 +516815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514471,6 +516862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 9 @@ -514533,6 +516925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514579,6 +516972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 10 @@ -514641,6 +517035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514687,6 +517082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 11 @@ -514749,6 +517145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514795,6 +517192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 12 @@ -514857,6 +517255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -514903,6 +517302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 13 @@ -514965,6 +517365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515011,6 +517412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 14 @@ -515073,6 +517475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515119,6 +517522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 15 @@ -515181,6 +517585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515227,6 +517632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 16 @@ -515289,6 +517695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515335,6 +517742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 17 @@ -515397,6 +517805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515443,6 +517852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 18 @@ -515505,6 +517915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515551,6 +517962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 19 @@ -515613,6 +518025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515659,6 +518072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 20 @@ -515721,6 +518135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515767,6 +518182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16 - 21 @@ -515829,6 +518245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515875,6 +518292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 0 @@ -515937,6 +518355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -515983,6 +518402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 1 @@ -516045,6 +518465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516091,6 +518512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 2 @@ -516153,6 +518575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516199,6 +518622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 3 @@ -516261,6 +518685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516307,6 +518732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 4 @@ -516369,6 +518795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516415,6 +518842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 5 @@ -516477,6 +518905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516523,6 +518952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 6 @@ -516585,6 +519015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516631,6 +519062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 7 @@ -516693,6 +519125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516739,6 +519172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 8 @@ -516801,6 +519235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516847,6 +519282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 9 @@ -516909,6 +519345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -516955,6 +519392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 10 @@ -517017,6 +519455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517063,6 +519502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 11 @@ -517125,6 +519565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517171,6 +519612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 12 @@ -517233,6 +519675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517279,6 +519722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 13 @@ -517341,6 +519785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517387,6 +519832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 14 @@ -517449,6 +519895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517495,6 +519942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 15 @@ -517557,6 +520005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517603,6 +520052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 16 @@ -517665,6 +520115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517711,6 +520162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 17 @@ -517773,6 +520225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517819,6 +520272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 18 @@ -517881,6 +520335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -517927,6 +520382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 19 @@ -517989,6 +520445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518035,6 +520492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 20 @@ -518097,6 +520555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518143,6 +520602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17 - 21 @@ -518205,6 +520665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518251,6 +520712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 0 @@ -518313,6 +520775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518359,6 +520822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 1 @@ -518421,6 +520885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518467,6 +520932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 2 @@ -518529,6 +520995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518575,6 +521042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 3 @@ -518637,6 +521105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518683,6 +521152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 4 @@ -518745,6 +521215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518791,6 +521262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 5 @@ -518853,6 +521325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -518899,6 +521372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 6 @@ -518961,6 +521435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519007,6 +521482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 7 @@ -519069,6 +521545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519115,6 +521592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 8 @@ -519177,6 +521655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519223,6 +521702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 9 @@ -519285,6 +521765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519331,6 +521812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 10 @@ -519393,6 +521875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519439,6 +521922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 11 @@ -519501,6 +521985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519547,6 +522032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 12 @@ -519609,6 +522095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519655,6 +522142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 13 @@ -519717,6 +522205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519763,6 +522252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 14 @@ -519825,6 +522315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519871,6 +522362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 15 @@ -519933,6 +522425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -519979,6 +522472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 16 @@ -520041,6 +522535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520087,6 +522582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 17 @@ -520149,6 +522645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520195,6 +522692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 18 @@ -520257,6 +522755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520303,6 +522802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 19 @@ -520365,6 +522865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520411,6 +522912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 20 @@ -520473,6 +522975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520519,6 +523022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18 - 21 @@ -520581,6 +523085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520627,6 +523132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 0 @@ -520689,6 +523195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520735,6 +523242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 1 @@ -520797,6 +523305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520843,6 +523352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 2 @@ -520905,6 +523415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -520951,6 +523462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 3 @@ -521013,6 +523525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521059,6 +523572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 4 @@ -521121,6 +523635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521167,6 +523682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 5 @@ -521229,6 +523745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521275,6 +523792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 6 @@ -521337,6 +523855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521383,6 +523902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 7 @@ -521445,6 +523965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521491,6 +524012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 8 @@ -521553,6 +524075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521599,6 +524122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 9 @@ -521661,6 +524185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521707,6 +524232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 10 @@ -521769,6 +524295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521815,6 +524342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 11 @@ -521877,6 +524405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -521923,6 +524452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 12 @@ -521985,6 +524515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522031,6 +524562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 13 @@ -522093,6 +524625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522139,6 +524672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 14 @@ -522201,6 +524735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522247,6 +524782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 15 @@ -522309,6 +524845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522355,6 +524892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 16 @@ -522417,6 +524955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522463,6 +525002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 17 @@ -522525,6 +525065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522571,6 +525112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 18 @@ -522633,6 +525175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522679,6 +525222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 19 @@ -522741,6 +525285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522787,6 +525332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 20 @@ -522849,6 +525395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -522895,6 +525442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19 - 21 @@ -522957,6 +525505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523003,6 +525552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 0 @@ -523065,6 +525615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523111,6 +525662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 1 @@ -523173,6 +525725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523219,6 +525772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 2 @@ -523281,6 +525835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523327,6 +525882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 3 @@ -523389,6 +525945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523435,6 +525992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 4 @@ -523497,6 +526055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523543,6 +526102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 5 @@ -523605,6 +526165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523651,6 +526212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 6 @@ -523713,6 +526275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523759,6 +526322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 7 @@ -523821,6 +526385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523867,6 +526432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 8 @@ -523929,6 +526495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -523975,6 +526542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 9 @@ -524037,6 +526605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524083,6 +526652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 10 @@ -524145,6 +526715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524191,6 +526762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 11 @@ -524253,6 +526825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524299,6 +526872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 12 @@ -524361,6 +526935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524407,6 +526982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 13 @@ -524469,6 +527045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524515,6 +527092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 14 @@ -524577,6 +527155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524623,6 +527202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 15 @@ -524685,6 +527265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524731,6 +527312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 16 @@ -524793,6 +527375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524839,6 +527422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 17 @@ -524901,6 +527485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -524947,6 +527532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 18 @@ -525009,6 +527595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525055,6 +527642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 19 @@ -525117,6 +527705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525163,6 +527752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 20 @@ -525225,6 +527815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525271,6 +527862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 21 @@ -525333,6 +527925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525379,6 +527972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 0 @@ -525441,6 +528035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525487,6 +528082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 1 @@ -525549,6 +528145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525595,6 +528192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 2 @@ -525657,6 +528255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525703,6 +528302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 3 @@ -525765,6 +528365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525811,6 +528412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 4 @@ -525873,6 +528475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -525919,6 +528522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 5 @@ -525981,6 +528585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526027,6 +528632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 6 @@ -526089,6 +528695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526135,6 +528742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 7 @@ -526197,6 +528805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526243,6 +528852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 8 @@ -526305,6 +528915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526351,6 +528962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 9 @@ -526413,6 +529025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526459,6 +529072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 10 @@ -526521,6 +529135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526567,6 +529182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 11 @@ -526629,6 +529245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526675,6 +529292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 12 @@ -526737,6 +529355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526783,6 +529402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 13 @@ -526845,6 +529465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526891,6 +529512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 14 @@ -526953,6 +529575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -526999,6 +529622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 15 @@ -527061,6 +529685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527107,6 +529732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 16 @@ -527169,6 +529795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527215,6 +529842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 17 @@ -527277,6 +529905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527323,6 +529952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 18 @@ -527385,6 +530015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527431,6 +530062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 19 @@ -527493,6 +530125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527539,6 +530172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 20 @@ -527601,6 +530235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527647,6 +530282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21 - 21 @@ -527709,6 +530345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527755,6 +530392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 0 @@ -527817,6 +530455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527863,6 +530502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 1 @@ -527925,6 +530565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -527971,6 +530612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 2 @@ -528033,6 +530675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528079,6 +530722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 3 @@ -528141,6 +530785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528187,6 +530832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 4 @@ -528249,6 +530895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528295,6 +530942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 5 @@ -528357,6 +531005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528403,6 +531052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 6 @@ -528465,6 +531115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528511,6 +531162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 7 @@ -528573,6 +531225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528619,6 +531272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 8 @@ -528681,6 +531335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528727,6 +531382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 9 @@ -528789,6 +531445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528835,6 +531492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 10 @@ -528897,6 +531555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -528943,6 +531602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 11 @@ -529005,6 +531665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529051,6 +531712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 12 @@ -529113,6 +531775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529159,6 +531822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 13 @@ -529221,6 +531885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529267,6 +531932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 14 @@ -529329,6 +531995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529375,6 +532042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 15 @@ -529437,6 +532105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529483,6 +532152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 16 @@ -529545,6 +532215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529591,6 +532262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 17 @@ -529653,6 +532325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529699,6 +532372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 18 @@ -529761,6 +532435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529807,6 +532482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 19 @@ -529869,6 +532545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -529915,6 +532592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 20 @@ -529977,6 +532655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530023,6 +532702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 22 - 21 @@ -530085,6 +532765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530131,6 +532812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 0 @@ -530193,6 +532875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530239,6 +532922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 1 @@ -530301,6 +532985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530347,6 +533032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 2 @@ -530409,6 +533095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530455,6 +533142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 3 @@ -530517,6 +533205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530563,6 +533252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 4 @@ -530625,6 +533315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530671,6 +533362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 5 @@ -530733,6 +533425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530779,6 +533472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 6 @@ -530841,6 +533535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530887,6 +533582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 7 @@ -530949,6 +533645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -530995,6 +533692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 8 @@ -531057,6 +533755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531103,6 +533802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 9 @@ -531165,6 +533865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531211,6 +533912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 10 @@ -531273,6 +533975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531319,6 +534022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 11 @@ -531381,6 +534085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531427,6 +534132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 12 @@ -531489,6 +534195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531535,6 +534242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 13 @@ -531597,6 +534305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531643,6 +534352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 14 @@ -531705,6 +534415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531751,6 +534462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 15 @@ -531813,6 +534525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531859,6 +534572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 16 @@ -531921,6 +534635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -531967,6 +534682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 17 @@ -532029,6 +534745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532075,6 +534792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 18 @@ -532137,6 +534855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532183,6 +534902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 19 @@ -532245,6 +534965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532291,6 +535012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 20 @@ -532353,6 +535075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532399,6 +535122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 21 @@ -532461,6 +535185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532507,6 +535232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 0 @@ -532569,6 +535295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532615,6 +535342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 1 @@ -532677,6 +535405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532723,6 +535452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 2 @@ -532785,6 +535515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532831,6 +535562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 3 @@ -532893,6 +535625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -532939,6 +535672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 4 @@ -533001,6 +535735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533047,6 +535782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 5 @@ -533109,6 +535845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533155,6 +535892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 6 @@ -533217,6 +535955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533263,6 +536002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 7 @@ -533325,6 +536065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533371,6 +536112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 8 @@ -533433,6 +536175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533479,6 +536222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 9 @@ -533541,6 +536285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533587,6 +536332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 10 @@ -533649,6 +536395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533695,6 +536442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 11 @@ -533757,6 +536505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533803,6 +536552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 12 @@ -533865,6 +536615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -533911,6 +536662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 13 @@ -533973,6 +536725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534019,6 +536772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 14 @@ -534081,6 +536835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534127,6 +536882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 15 @@ -534189,6 +536945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534235,6 +536992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 16 @@ -534297,6 +537055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534343,6 +537102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 17 @@ -534405,6 +537165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534451,6 +537212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 18 @@ -534513,6 +537275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534559,6 +537322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 19 @@ -534621,6 +537385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534667,6 +537432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 20 @@ -534729,6 +537495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534775,6 +537542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24 - 21 @@ -534837,6 +537605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534883,6 +537652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 0 @@ -534945,6 +537715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -534991,6 +537762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 1 @@ -535053,6 +537825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535099,6 +537872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 2 @@ -535161,6 +537935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535207,6 +537982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 3 @@ -535269,6 +538045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535315,6 +538092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 4 @@ -535377,6 +538155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535423,6 +538202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 5 @@ -535485,6 +538265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535531,6 +538312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 6 @@ -535593,6 +538375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535639,6 +538422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 7 @@ -535701,6 +538485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535747,6 +538532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 8 @@ -535809,6 +538595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535855,6 +538642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 9 @@ -535917,6 +538705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -535963,6 +538752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 10 @@ -536025,6 +538815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536071,6 +538862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 11 @@ -536133,6 +538925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536179,6 +538972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 12 @@ -536241,6 +539035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536287,6 +539082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 13 @@ -536349,6 +539145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536395,6 +539192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 14 @@ -536457,6 +539255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536503,6 +539302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 15 @@ -536565,6 +539365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536611,6 +539412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 16 @@ -536673,6 +539475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536719,6 +539522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 17 @@ -536781,6 +539585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536827,6 +539632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 18 @@ -536889,6 +539695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -536935,6 +539742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 19 @@ -536997,6 +539805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537043,6 +539852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 20 @@ -537105,6 +539915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537151,6 +539962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 25 - 21 @@ -537213,6 +540025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537259,6 +540072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 0 @@ -537321,6 +540135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537367,6 +540182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 1 @@ -537429,6 +540245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537475,6 +540292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 2 @@ -537537,6 +540355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537583,6 +540402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 3 @@ -537645,6 +540465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537691,6 +540512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 4 @@ -537753,6 +540575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537799,6 +540622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 5 @@ -537861,6 +540685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -537907,6 +540732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 6 @@ -537969,6 +540795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538015,6 +540842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 7 @@ -538077,6 +540905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538123,6 +540952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 8 @@ -538185,6 +541015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538231,6 +541062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 9 @@ -538293,6 +541125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538339,6 +541172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 10 @@ -538401,6 +541235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538447,6 +541282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 11 @@ -538509,6 +541345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538555,6 +541392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 12 @@ -538617,6 +541455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538663,6 +541502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 13 @@ -538725,6 +541565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538771,6 +541612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 14 @@ -538833,6 +541675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538879,6 +541722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 15 @@ -538941,6 +541785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -538987,6 +541832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 16 @@ -539049,6 +541895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539095,6 +541942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 17 @@ -539157,6 +542005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539203,6 +542052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 18 @@ -539265,6 +542115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539311,6 +542162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 19 @@ -539373,6 +542225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539419,6 +542272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 20 @@ -539481,6 +542335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539527,6 +542382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26 - 21 @@ -539589,6 +542445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539635,6 +542492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 0 @@ -539697,6 +542555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539743,6 +542602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 1 @@ -539805,6 +542665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539851,6 +542712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 2 @@ -539913,6 +542775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -539959,6 +542822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 3 @@ -540021,6 +542885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540067,6 +542932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 4 @@ -540129,6 +542995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540175,6 +543042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 5 @@ -540237,6 +543105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540283,6 +543152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 6 @@ -540345,6 +543215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540391,6 +543262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 7 @@ -540453,6 +543325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540499,6 +543372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 8 @@ -540561,6 +543435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540607,6 +543482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 9 @@ -540669,6 +543545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540715,6 +543592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 10 @@ -540777,6 +543655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540823,6 +543702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 11 @@ -540885,6 +543765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -540931,6 +543812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 12 @@ -540993,6 +543875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541039,6 +543922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 13 @@ -541101,6 +543985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541147,6 +544032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 14 @@ -541209,6 +544095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541255,6 +544142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 15 @@ -541317,6 +544205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541363,6 +544252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 16 @@ -541425,6 +544315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541471,6 +544362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 17 @@ -541533,6 +544425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541579,6 +544472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 18 @@ -541641,6 +544535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541687,6 +544582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 19 @@ -541749,6 +544645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541795,6 +544692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 20 @@ -541857,6 +544755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -541903,6 +544802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 27 - 21 @@ -541965,6 +544865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542011,6 +544912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 0 @@ -542073,6 +544975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542119,6 +545022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 1 @@ -542181,6 +545085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542227,6 +545132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 2 @@ -542289,6 +545195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542335,6 +545242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 3 @@ -542397,6 +545305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542443,6 +545352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 4 @@ -542505,6 +545415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542551,6 +545462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 5 @@ -542613,6 +545525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542659,6 +545572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 6 @@ -542721,6 +545635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542767,6 +545682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 7 @@ -542829,6 +545745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542875,6 +545792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 8 @@ -542937,6 +545855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -542983,6 +545902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 9 @@ -543045,6 +545965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543091,6 +546012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 10 @@ -543153,6 +546075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543199,6 +546122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 11 @@ -543261,6 +546185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543307,6 +546232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 12 @@ -543369,6 +546295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543415,6 +546342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 13 @@ -543477,6 +546405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543523,6 +546452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 14 @@ -543585,6 +546515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543631,6 +546562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 15 @@ -543693,6 +546625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543739,6 +546672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 16 @@ -543801,6 +546735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543847,6 +546782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 17 @@ -543909,6 +546845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -543955,6 +546892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 18 @@ -544017,6 +546955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544063,6 +547002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 19 @@ -544125,6 +547065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544171,6 +547112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 20 @@ -544233,6 +547175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544279,6 +547222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28 - 21 @@ -544341,6 +547285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544387,6 +547332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 0 @@ -544449,6 +547395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544495,6 +547442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 1 @@ -544557,6 +547505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544603,6 +547552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 2 @@ -544665,6 +547615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544711,6 +547662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 3 @@ -544773,6 +547725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544819,6 +547772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 4 @@ -544881,6 +547835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -544927,6 +547882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 5 @@ -544989,6 +547945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545035,6 +547992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 6 @@ -545097,6 +548055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545143,6 +548102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 7 @@ -545205,6 +548165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545251,6 +548212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 8 @@ -545313,6 +548275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545359,6 +548322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 9 @@ -545421,6 +548385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545467,6 +548432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 10 @@ -545529,6 +548495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545575,6 +548542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 11 @@ -545637,6 +548605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545683,6 +548652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 12 @@ -545745,6 +548715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545791,6 +548762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 13 @@ -545853,6 +548825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -545899,6 +548872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 14 @@ -545961,6 +548935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546007,6 +548982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 15 @@ -546069,6 +549045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546115,6 +549092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 16 @@ -546177,6 +549155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546223,6 +549202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 17 @@ -546285,6 +549265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546331,6 +549312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 18 @@ -546393,6 +549375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546439,6 +549422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 19 @@ -546501,6 +549485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546547,6 +549532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 20 @@ -546609,6 +549595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546655,6 +549642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29 - 21 @@ -546717,6 +549705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546763,6 +549752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 0 @@ -546825,6 +549815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546871,6 +549862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 1 @@ -546933,6 +549925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -546979,6 +549972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 2 @@ -547041,6 +550035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547087,6 +550082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 3 @@ -547149,6 +550145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547195,6 +550192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 4 @@ -547257,6 +550255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547303,6 +550302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 5 @@ -547365,6 +550365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547411,6 +550412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 6 @@ -547473,6 +550475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547519,6 +550522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 7 @@ -547581,6 +550585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547627,6 +550632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 8 @@ -547689,6 +550695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547735,6 +550742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 9 @@ -547797,6 +550805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547843,6 +550852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 10 @@ -547905,6 +550915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -547951,6 +550962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 11 @@ -548013,6 +551025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548059,6 +551072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 12 @@ -548121,6 +551135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548167,6 +551182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 13 @@ -548229,6 +551245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548275,6 +551292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 14 @@ -548337,6 +551355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548383,6 +551402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 15 @@ -548445,6 +551465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548491,6 +551512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 16 @@ -548553,6 +551575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548599,6 +551622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 17 @@ -548661,6 +551685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548707,6 +551732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 18 @@ -548769,6 +551795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548815,6 +551842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 19 @@ -548877,6 +551905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -548923,6 +551952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 20 @@ -548985,6 +552015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549031,6 +552062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 30 - 21 @@ -549093,6 +552125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549139,6 +552172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 0 @@ -549201,6 +552235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549247,6 +552282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 1 @@ -549309,6 +552345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549355,6 +552392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 2 @@ -549417,6 +552455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549463,6 +552502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 3 @@ -549525,6 +552565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549571,6 +552612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 4 @@ -549633,6 +552675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549679,6 +552722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 5 @@ -549741,6 +552785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549787,6 +552832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 6 @@ -549849,6 +552895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -549895,6 +552942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 7 @@ -549957,6 +553005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550003,6 +553052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 8 @@ -550065,6 +553115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550111,6 +553162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 9 @@ -550173,6 +553225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550219,6 +553272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 10 @@ -550281,6 +553335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550327,6 +553382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 11 @@ -550389,6 +553445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550435,6 +553492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 12 @@ -550497,6 +553555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550543,6 +553602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 13 @@ -550605,6 +553665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550651,6 +553712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 14 @@ -550713,6 +553775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550759,6 +553822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 15 @@ -550821,6 +553885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550867,6 +553932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 16 @@ -550929,6 +553995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -550975,6 +554042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 17 @@ -551037,6 +554105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551083,6 +554152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 18 @@ -551145,6 +554215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551191,6 +554262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 19 @@ -551253,6 +554325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551299,6 +554372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 20 @@ -551361,6 +554435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551407,6 +554482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31 - 21 @@ -551469,6 +554545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551515,6 +554592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 0 @@ -551577,6 +554655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551623,6 +554702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 1 @@ -551685,6 +554765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551731,6 +554812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 2 @@ -551793,6 +554875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551839,6 +554922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 3 @@ -551901,6 +554985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -551947,6 +555032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 4 @@ -552009,6 +555095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552055,6 +555142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 5 @@ -552117,6 +555205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552163,6 +555252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 6 @@ -552225,6 +555315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552271,6 +555362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 7 @@ -552333,6 +555425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552379,6 +555472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 8 @@ -552441,6 +555535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552487,6 +555582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 9 @@ -552549,6 +555645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552595,6 +555692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 10 @@ -552657,6 +555755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552703,6 +555802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 11 @@ -552765,6 +555865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552811,6 +555912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 12 @@ -552873,6 +555975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -552919,6 +556022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 13 @@ -552981,6 +556085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553027,6 +556132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 14 @@ -553089,6 +556195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553135,6 +556242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 15 @@ -553197,6 +556305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553243,6 +556352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 16 @@ -553305,6 +556415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553351,6 +556462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 17 @@ -553413,6 +556525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553459,6 +556572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 18 @@ -553521,6 +556635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553567,6 +556682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 19 @@ -553629,6 +556745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553675,6 +556792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 20 @@ -553737,6 +556855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553783,6 +556902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 32 - 21 @@ -553845,6 +556965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553891,6 +557012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 0 @@ -553953,6 +557075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -553999,6 +557122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 1 @@ -554061,6 +557185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554107,6 +557232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 2 @@ -554169,6 +557295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554215,6 +557342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 3 @@ -554277,6 +557405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554323,6 +557452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 4 @@ -554385,6 +557515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554431,6 +557562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 5 @@ -554493,6 +557625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554539,6 +557672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 6 @@ -554601,6 +557735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554647,6 +557782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 7 @@ -554709,6 +557845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554755,6 +557892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 8 @@ -554817,6 +557955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554863,6 +558002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 9 @@ -554925,6 +558065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -554971,6 +558112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 10 @@ -555033,6 +558175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555079,6 +558222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 11 @@ -555141,6 +558285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555187,6 +558332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 12 @@ -555249,6 +558395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555295,6 +558442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 13 @@ -555357,6 +558505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555403,6 +558552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 14 @@ -555465,6 +558615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555511,6 +558662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 15 @@ -555573,6 +558725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555619,6 +558772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 16 @@ -555681,6 +558835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555727,6 +558882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 17 @@ -555789,6 +558945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555835,6 +558992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 18 @@ -555897,6 +559055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -555943,6 +559102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 19 @@ -556005,6 +559165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556051,6 +559212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 20 @@ -556113,6 +559275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556159,6 +559322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 33 - 21 @@ -556221,6 +559385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556267,6 +559432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 0 @@ -556329,6 +559495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556375,6 +559542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 1 @@ -556437,6 +559605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556483,6 +559652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 2 @@ -556545,6 +559715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556591,6 +559762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 3 @@ -556653,6 +559825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556699,6 +559872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 4 @@ -556761,6 +559935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556807,6 +559982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 5 @@ -556869,6 +560045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -556915,6 +560092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 6 @@ -556977,6 +560155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557023,6 +560202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 7 @@ -557085,6 +560265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557131,6 +560312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 8 @@ -557193,6 +560375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557239,6 +560422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 9 @@ -557301,6 +560485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557347,6 +560532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 10 @@ -557409,6 +560595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557455,6 +560642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 11 @@ -557517,6 +560705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557563,6 +560752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 12 @@ -557625,6 +560815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557671,6 +560862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 13 @@ -557733,6 +560925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557779,6 +560972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 14 @@ -557841,6 +561035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557887,6 +561082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 15 @@ -557949,6 +561145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -557995,6 +561192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 16 @@ -558057,6 +561255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558103,6 +561302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 17 @@ -558165,6 +561365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558211,6 +561412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 18 @@ -558273,6 +561475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558319,6 +561522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 19 @@ -558381,6 +561585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558427,6 +561632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 20 @@ -558489,6 +561695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558535,6 +561742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34 - 21 @@ -558597,6 +561805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558643,6 +561852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 0 @@ -558705,6 +561915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558751,6 +561962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 1 @@ -558813,6 +562025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558859,6 +562072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 2 @@ -558921,6 +562135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -558967,6 +562182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 3 @@ -559029,6 +562245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559075,6 +562292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 4 @@ -559137,6 +562355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559183,6 +562402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 5 @@ -559245,6 +562465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559291,6 +562512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 6 @@ -559353,6 +562575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559399,6 +562622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 7 @@ -559461,6 +562685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559507,6 +562732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 8 @@ -559569,6 +562795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559615,6 +562842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 9 @@ -559677,6 +562905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559723,6 +562952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 10 @@ -559785,6 +563015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559831,6 +563062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 11 @@ -559893,6 +563125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -559939,6 +563172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 12 @@ -560001,6 +563235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560047,6 +563282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 13 @@ -560109,6 +563345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560155,6 +563392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 14 @@ -560217,6 +563455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560263,6 +563502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 15 @@ -560325,6 +563565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560371,6 +563612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 16 @@ -560433,6 +563675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560479,6 +563722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 17 @@ -560541,6 +563785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560587,6 +563832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 18 @@ -560649,6 +563895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560695,6 +563942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 19 @@ -560757,6 +564005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560803,6 +564052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 20 @@ -560865,6 +564115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -560911,6 +564162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 35 - 21 @@ -560973,6 +564225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561019,6 +564272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 0 @@ -561081,6 +564335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561127,6 +564382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 1 @@ -561189,6 +564445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561235,6 +564492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 2 @@ -561297,6 +564555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561343,6 +564602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 3 @@ -561405,6 +564665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561451,6 +564712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 4 @@ -561513,6 +564775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561559,6 +564822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 5 @@ -561621,6 +564885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561667,6 +564932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 6 @@ -561729,6 +564995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561775,6 +565042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 7 @@ -561837,6 +565105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561883,6 +565152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 8 @@ -561945,6 +565215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -561991,6 +565262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 9 @@ -562053,6 +565325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562099,6 +565372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 10 @@ -562161,6 +565435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562207,6 +565482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 11 @@ -562269,6 +565545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562315,6 +565592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 12 @@ -562377,6 +565655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562423,6 +565702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 13 @@ -562485,6 +565765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562531,6 +565812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 14 @@ -562593,6 +565875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562639,6 +565922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 15 @@ -562701,6 +565985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562747,6 +566032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 16 @@ -562809,6 +566095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562855,6 +566142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 17 @@ -562917,6 +566205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -562963,6 +566252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 18 @@ -563025,6 +566315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563071,6 +566362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 19 @@ -563133,6 +566425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563179,6 +566472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 20 @@ -563241,6 +566535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563287,6 +566582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36 - 21 @@ -563349,6 +566645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563395,6 +566692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 0 @@ -563457,6 +566755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563503,6 +566802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 1 @@ -563565,6 +566865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563611,6 +566912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 2 @@ -563673,6 +566975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563719,6 +567022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 3 @@ -563781,6 +567085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563827,6 +567132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 4 @@ -563889,6 +567195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -563935,6 +567242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 5 @@ -563997,6 +567305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564043,6 +567352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 6 @@ -564105,6 +567415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564151,6 +567462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 7 @@ -564213,6 +567525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564259,6 +567572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 8 @@ -564321,6 +567635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564367,6 +567682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 9 @@ -564429,6 +567745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564475,6 +567792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 10 @@ -564537,6 +567855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564583,6 +567902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 11 @@ -564645,6 +567965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564691,6 +568012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 12 @@ -564753,6 +568075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564799,6 +568122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 13 @@ -564861,6 +568185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -564907,6 +568232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 14 @@ -564969,6 +568295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565015,6 +568342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 15 @@ -565077,6 +568405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565123,6 +568452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 16 @@ -565185,6 +568515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565231,6 +568562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 17 @@ -565293,6 +568625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565339,6 +568672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 18 @@ -565401,6 +568735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565447,6 +568782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 19 @@ -565509,6 +568845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565555,6 +568892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 20 @@ -565617,6 +568955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565663,6 +569002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37 - 21 @@ -565725,6 +569065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565771,6 +569112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 0 @@ -565833,6 +569175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565879,6 +569222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 1 @@ -565941,6 +569285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -565987,6 +569332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 2 @@ -566049,6 +569395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566095,6 +569442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 3 @@ -566157,6 +569505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566203,6 +569552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 4 @@ -566265,6 +569615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566311,6 +569662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 5 @@ -566373,6 +569725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566419,6 +569772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 6 @@ -566481,6 +569835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566527,6 +569882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 7 @@ -566589,6 +569945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566635,6 +569992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 8 @@ -566697,6 +570055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566743,6 +570102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 9 @@ -566805,6 +570165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566851,6 +570212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 10 @@ -566913,6 +570275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -566959,6 +570322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 11 @@ -567021,6 +570385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567067,6 +570432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 12 @@ -567129,6 +570495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567175,6 +570542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 13 @@ -567237,6 +570605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567283,6 +570652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 14 @@ -567345,6 +570715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567391,6 +570762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 15 @@ -567453,6 +570825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567499,6 +570872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 16 @@ -567561,6 +570935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567607,6 +570982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 17 @@ -567669,6 +571045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567715,6 +571092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 18 @@ -567777,6 +571155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567823,6 +571202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 19 @@ -567885,6 +571265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -567931,6 +571312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 20 @@ -567993,6 +571375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568039,6 +571422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38 - 21 @@ -568101,6 +571485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568147,6 +571532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 0 @@ -568209,6 +571595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568255,6 +571642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 1 @@ -568317,6 +571705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568363,6 +571752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 2 @@ -568425,6 +571815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568471,6 +571862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 3 @@ -568533,6 +571925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568579,6 +571972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 4 @@ -568641,6 +572035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568687,6 +572082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 5 @@ -568749,6 +572145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568795,6 +572192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 6 @@ -568857,6 +572255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -568903,6 +572302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 7 @@ -568965,6 +572365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569011,6 +572412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 8 @@ -569073,6 +572475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569119,6 +572522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 9 @@ -569181,6 +572585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569227,6 +572632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 10 @@ -569289,6 +572695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569335,6 +572742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 11 @@ -569397,6 +572805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569443,6 +572852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 12 @@ -569505,6 +572915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569551,6 +572962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 13 @@ -569613,6 +573025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569659,6 +573072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 14 @@ -569721,6 +573135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569767,6 +573182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 15 @@ -569829,6 +573245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569875,6 +573292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 16 @@ -569937,6 +573355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -569983,6 +573402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 17 @@ -570045,6 +573465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570091,6 +573512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 18 @@ -570153,6 +573575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570199,6 +573622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 19 @@ -570261,6 +573685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570307,6 +573732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 20 @@ -570369,6 +573795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570415,6 +573842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 39 - 21 @@ -570477,6 +573905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570523,6 +573952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 0 @@ -570585,6 +574015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570631,6 +574062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 1 @@ -570693,6 +574125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570739,6 +574172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 2 @@ -570801,6 +574235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570847,6 +574282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 3 @@ -570909,6 +574345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -570955,6 +574392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 4 @@ -571017,6 +574455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571063,6 +574502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 5 @@ -571125,6 +574565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571171,6 +574612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 6 @@ -571233,6 +574675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571279,6 +574722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 7 @@ -571341,6 +574785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571387,6 +574832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 8 @@ -571449,6 +574895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571495,6 +574942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 9 @@ -571557,6 +575005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571603,6 +575052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 10 @@ -571665,6 +575115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571711,6 +575162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 11 @@ -571773,6 +575225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571819,6 +575272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 12 @@ -571881,6 +575335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -571927,6 +575382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 13 @@ -571989,6 +575445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572035,6 +575492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 14 @@ -572097,6 +575555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572143,6 +575602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 15 @@ -572205,6 +575665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572251,6 +575712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 16 @@ -572313,6 +575775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572359,6 +575822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 17 @@ -572421,6 +575885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572467,6 +575932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 18 @@ -572529,6 +575995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572575,6 +576042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 19 @@ -572637,6 +576105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572683,6 +576152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 20 @@ -572745,6 +576215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572791,6 +576262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 21 @@ -572853,6 +576325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -572899,6 +576372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 0 @@ -572961,6 +576435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573007,6 +576482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 1 @@ -573069,6 +576545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573115,6 +576592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 2 @@ -573177,6 +576655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573223,6 +576702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 3 @@ -573285,6 +576765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573331,6 +576812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 4 @@ -573393,6 +576875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573439,6 +576922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 5 @@ -573501,6 +576985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573547,6 +577032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 6 @@ -573609,6 +577095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573655,6 +577142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 7 @@ -573717,6 +577205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573763,6 +577252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 8 @@ -573825,6 +577315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573871,6 +577362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 9 @@ -573933,6 +577425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -573979,6 +577472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 10 @@ -574041,6 +577535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574087,6 +577582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 11 @@ -574149,6 +577645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574195,6 +577692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 12 @@ -574257,6 +577755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574303,6 +577802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 13 @@ -574365,6 +577865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574411,6 +577912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 14 @@ -574473,6 +577975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574519,6 +578022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 15 @@ -574581,6 +578085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574627,6 +578132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 16 @@ -574689,6 +578195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574735,6 +578242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 17 @@ -574797,6 +578305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574843,6 +578352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 18 @@ -574905,6 +578415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -574951,6 +578462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 19 @@ -575013,6 +578525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -575059,6 +578572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 20 @@ -575121,6 +578635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -575167,6 +578682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 41 - 21 @@ -575277,6 +578793,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -575360,6 +578877,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -575466,6 +578984,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -575549,6 +579068,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -578008,150 +581528,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 994329480} ---- !u!1 &994371093 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 994371094} - - component: {fileID: 994371098} - - component: {fileID: 994371097} - - component: {fileID: 994371096} - - component: {fileID: 994371095} - m_Layer: 0 - m_Name: "0_\u9884\u7B97\u5206\u914D" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &994371094 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 994371093} - 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: 846087252} - - {fileID: 592192548} - m_Father: {fileID: 971520527} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -91, y: 0} - m_SizeDelta: {x: 86, y: 14} - m_Pivot: {x: 1, y: 1} ---- !u!114 &994371095 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 994371093} - 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 &994371096 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 994371093} - 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: 994371097} - 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 &994371097 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 994371093} - 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 &994371098 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 994371093} --- !u!1 &994419205 GameObject: m_ObjectHideFlags: 0 @@ -581333,6 +584709,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -581378,6 +584755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -581463,6 +584841,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -581509,6 +584888,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 335 @@ -581570,6 +584950,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -581616,6 +584997,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 310 @@ -581677,6 +585059,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -581723,6 +585106,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 243 @@ -581784,6 +585168,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -581830,6 +585215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 135 @@ -581891,6 +585277,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -581937,6 +585324,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1548 @@ -583160,7 +586548,7 @@ RectTransform: m_GameObject: {fileID: 1005324645} 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: 1910686491} m_RootOrder: 1 @@ -585855,6 +589243,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -585900,6 +589289,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -585985,6 +589375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -586031,6 +589422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -586544,75 +589936,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1013202006} ---- !u!1 &1013356473 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1013356474} - - component: {fileID: 1013356476} - - component: {fileID: 1013356475} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1013356474 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1013356473} - 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: 248293908} - m_Father: {fileID: 2067913524} - 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: 48, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1013356475 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1013356473} - 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 &1013356476 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1013356473} --- !u!1 &1013712969 GameObject: m_ObjectHideFlags: 0 @@ -588419,6 +591742,137 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1017904539 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1017904540} + - component: {fileID: 1017904544} + - component: {fileID: 1017904543} + - component: {fileID: 1017904542} + - component: {fileID: 1017904541} + m_Layer: 5 + m_Name: "btn_\u9996\u9875" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1017904540 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1017904539} + 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: 806460681} + m_Father: {fileID: 1984073382} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1017904541 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1017904539} + 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 + delegates: [] +--- !u!114 &1017904542 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1017904539} + 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: 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 + 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: 1017904543} + 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 &1017904543 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1017904539} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1017904544 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1017904539} --- !u!1 &1018054036 GameObject: m_ObjectHideFlags: 0 @@ -589838,7 +593292,7 @@ RectTransform: m_GameObject: {fileID: 1022080298} 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: 1078410190} m_RootOrder: 4 @@ -591675,74 +595129,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1026065221} ---- !u!1 &1026193309 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1026193310} - - component: {fileID: 1026193312} - - component: {fileID: 1026193311} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1026193310 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1026193309} - 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: 650241770} - 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: 24, y: 12} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1026193311 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1026193309} - 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 &1026193312 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1026193309} --- !u!1 &1026777539 GameObject: m_ObjectHideFlags: 0 @@ -591811,150 +595197,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1026777539} ---- !u!1 &1027321807 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1027321808} - - component: {fileID: 1027321812} - - component: {fileID: 1027321811} - - component: {fileID: 1027321810} - - component: {fileID: 1027321809} - m_Layer: 0 - m_Name: 4_legend5 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1027321808 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1027321807} - 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: 943770288} - - {fileID: 117762804} - m_Father: {fileID: 1518182042} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -104} - m_SizeDelta: {x: 90, y: 16} - m_Pivot: {x: 1, y: 1} ---- !u!114 &1027321809 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1027321807} - 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 &1027321810 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1027321807} - 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: 1027321811} - 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 &1027321811 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1027321807} - 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 &1027321812 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1027321807} --- !u!1 &1027493477 GameObject: m_ObjectHideFlags: 0 @@ -592239,6 +595481,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1028070745} +--- !u!1 &1028119067 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1028119068} + - component: {fileID: 1028119070} + - component: {fileID: 1028119069} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1028119068 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1028119067} + 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: 176009686} + m_Father: {fileID: 2089140508} + 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: 64, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1028119069 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1028119067} + 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 &1028119070 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1028119067} --- !u!1 &1028234201 GameObject: m_ObjectHideFlags: 0 @@ -592264,7 +595575,7 @@ RectTransform: m_GameObject: {fileID: 1028234201} 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: 2057043785} m_RootOrder: 15 @@ -595168,80 +598479,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1038110795} ---- !u!1 &1038233712 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1038233713} - - component: {fileID: 1038233715} - - component: {fileID: 1038233714} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1038233713 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1038233712} - 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: 1876641487} - 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: 64, y: 20} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1038233714 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1038233712} - 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: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: legend3 ---- !u!222 &1038233715 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1038233712} --- !u!1 &1038299089 GameObject: m_ObjectHideFlags: 0 @@ -597641,7 +600878,7 @@ RectTransform: m_GameObject: {fileID: 1045055314} 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: 2057043785} m_RootOrder: 5 @@ -598077,6 +601314,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1046176295} +--- !u!1 &1046295483 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1046295484} + - component: {fileID: 1046295488} + - component: {fileID: 1046295487} + - component: {fileID: 1046295486} + - component: {fileID: 1046295485} + m_Layer: 0 + m_Name: 2_legend3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1046295484 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046295483} + 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: 723588091} + - {fileID: 1347497222} + m_Father: {fileID: 1518182042} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -52} + m_SizeDelta: {x: 90, y: 16} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1046295485 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046295483} + 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 &1046295486 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046295483} + 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: 1046295487} + 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 &1046295487 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046295483} + 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 &1046295488 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046295483} --- !u!1 &1046895085 GameObject: m_ObjectHideFlags: 0 @@ -599145,74 +602526,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1049876124} ---- !u!1 &1049889168 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1049889169} - - component: {fileID: 1049889171} - - component: {fileID: 1049889170} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1049889169 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1049889168} - 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: 1266275635} - 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 &1049889170 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1049889168} - 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.83137256, g: 0.50980395, b: 0.39607844, 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 &1049889171 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1049889168} --- !u!1 &1050001338 GameObject: m_ObjectHideFlags: 0 @@ -599631,7 +602944,7 @@ RectTransform: m_GameObject: {fileID: 1050794688} 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: 513008813} - {fileID: 1752609155} @@ -601978,6 +605291,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1057050354} +--- !u!1 &1057130479 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1057130480} + - component: {fileID: 1057130482} + - component: {fileID: 1057130481} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1057130480 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1057130479} + 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: 95831927} + 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: 64, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1057130481 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1057130479} + 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: "\u5B9E\u9645\u5F00\u9500" +--- !u!222 &1057130482 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1057130479} --- !u!1 &1057423216 GameObject: m_ObjectHideFlags: 0 @@ -610709,6 +614096,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -610754,6 +614142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -610839,6 +614228,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -610885,6 +614275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 63 @@ -610950,6 +614341,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -610996,6 +614388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 50 @@ -611061,6 +614454,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -611107,6 +614501,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 70 @@ -611172,6 +614567,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -611218,6 +614614,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 63 @@ -611283,6 +614680,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -611329,6 +614727,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23 - 60 @@ -613937,6 +617336,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1083895253 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1083895254} + - component: {fileID: 1083895256} + - component: {fileID: 1083895255} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1083895254 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1083895253} + 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: 860933079} + 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: 24, y: 12} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1083895255 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1083895253} + 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.5686275, g: 0.78039217, b: 0.68235296, 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 &1083895256 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1083895253} --- !u!1 &1083987041 GameObject: m_ObjectHideFlags: 0 @@ -614747,7 +618214,7 @@ RectTransform: m_GameObject: {fileID: 1086246675} 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: 1255690098} - {fileID: 661139983} @@ -618587,74 +622054,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1095723332 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1095723333} - - component: {fileID: 1095723335} - - component: {fileID: 1095723334} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1095723333 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1095723332} - 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: 1142617115} - 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 &1095723334 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1095723332} - 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 &1095723335 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1095723332} --- !u!1 &1096038990 GameObject: m_ObjectHideFlags: 0 @@ -619104,7 +622503,7 @@ RectTransform: m_GameObject: {fileID: 1097327323} 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: 449267886} m_RootOrder: 4 @@ -620862,6 +624261,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1101111978} +--- !u!1 &1101719825 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1101719826} + - component: {fileID: 1101719830} + - component: {fileID: 1101719829} + - component: {fileID: 1101719828} + - component: {fileID: 1101719827} + m_Layer: 0 + m_Name: "3_\u964D\u6C34\u91CF" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1101719826 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1101719825} + 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: 1183433382} + - {fileID: 1393307350} + m_Father: {fileID: 1267491321} + m_RootOrder: 3 + 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: 107, y: 0} + m_SizeDelta: {x: 70, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1101719827 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1101719825} + 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 &1101719828 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1101719825} + 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: 1101719829} + 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 &1101719829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1101719825} + 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 &1101719830 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1101719825} --- !u!1 &1101784365 GameObject: m_ObjectHideFlags: 0 @@ -621648,6 +625191,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1103764282} +--- !u!1 &1103795321 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1103795322} + - component: {fileID: 1103795326} + - component: {fileID: 1103795325} + - component: {fileID: 1103795324} + - component: {fileID: 1103795323} + m_Layer: 0 + m_Name: 3_legend4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1103795322 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1103795321} + 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: 1962012491} + - {fileID: 1670529705} + m_Father: {fileID: 1518182042} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -78} + m_SizeDelta: {x: 90, y: 16} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1103795323 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1103795321} + 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 &1103795324 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1103795321} + 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: 1103795325} + 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 &1103795325 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1103795321} + 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 &1103795326 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1103795321} --- !u!1 &1104285898 GameObject: m_ObjectHideFlags: 0 @@ -622928,7 +626615,7 @@ RectTransform: m_GameObject: {fileID: 1107207521} 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: 1107243629} m_RootOrder: 4 @@ -623553,6 +627240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -623598,6 +627286,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -623683,6 +627372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -623729,6 +627419,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 100 - 8 @@ -623794,6 +627485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -623840,6 +627532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 60 - 5 @@ -624062,6 +627755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -624107,6 +627801,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -624192,6 +627887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -624238,6 +627934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 120 - 118 @@ -624304,6 +628001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -624350,6 +628048,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 90 - 113 @@ -627582,7 +631281,7 @@ RectTransform: m_GameObject: {fileID: 1115439234} 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: 1676064384} - {fileID: 1799657881} @@ -627671,75 +631370,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1115533891} ---- !u!1 &1115561175 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1115561176} - - component: {fileID: 1115561178} - - component: {fileID: 1115561177} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1115561176 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1115561175} - 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: 1888159200} - m_Father: {fileID: 650241770} - 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: 26, y: 0} - m_SizeDelta: {x: 64, y: 16} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1115561177 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1115561175} - 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 &1115561178 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1115561175} --- !u!1 &1115692351 GameObject: m_ObjectHideFlags: 0 @@ -628745,75 +632375,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1118490750} ---- !u!1 &1118534037 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1118534038} - - component: {fileID: 1118534040} - - component: {fileID: 1118534039} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1118534038 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1118534037} - 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: 1412019312} - m_Father: {fileID: 1799204066} - 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: 80, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1118534039 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1118534037} - 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 &1118534040 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1118534037} --- !u!1 &1118595696 GameObject: m_ObjectHideFlags: 0 @@ -632571,6 +636132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -632616,6 +636178,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -632701,6 +636264,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -632747,6 +636311,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 180 @@ -632808,6 +636373,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -632854,6 +636420,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 100 @@ -632915,6 +636482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -632961,6 +636529,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 50 @@ -633022,6 +636591,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -633068,6 +636638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 150 @@ -633129,6 +636700,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -633175,6 +636747,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 90 @@ -633247,6 +636820,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -633330,6 +636904,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -633414,6 +636989,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -633497,6 +637073,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -633777,7 +637354,7 @@ RectTransform: m_GameObject: {fileID: 1128118460} 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: 932931519} m_Father: {fileID: 1466214550} @@ -634029,7 +637606,7 @@ RectTransform: m_GameObject: {fileID: 1129114035} 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: 1082308561} m_Father: {fileID: 1078410190} @@ -634040,6 +637617,150 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} +--- !u!1 &1129222744 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1129222745} + - component: {fileID: 1129222749} + - component: {fileID: 1129222748} + - component: {fileID: 1129222747} + - component: {fileID: 1129222746} + m_Layer: 0 + m_Name: "2_\u5F20\u4E09" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1129222745 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129222744} + 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: 1134452011} + - {fileID: 716672856} + m_Father: {fileID: 38397381} + 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: 29.5, y: 0} + m_SizeDelta: {x: 54, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1129222746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129222744} + 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 &1129222747 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129222744} + 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: 1129222748} + 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 &1129222748 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129222744} + 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 &1129222749 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1129222744} --- !u!1 &1129243215 GameObject: m_ObjectHideFlags: 0 @@ -636330,6 +640051,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1134452010 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1134452011} + - component: {fileID: 1134452013} + - component: {fileID: 1134452012} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1134452011 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1134452010} + 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: 1129222745} + 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 &1134452012 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1134452010} + 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 &1134452013 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1134452010} --- !u!1 &1134513947 GameObject: m_ObjectHideFlags: 0 @@ -638895,150 +642684,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1142467464} ---- !u!1 &1142617114 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1142617115} - - component: {fileID: 1142617119} - - component: {fileID: 1142617118} - - component: {fileID: 1142617117} - - component: {fileID: 1142617116} - m_Layer: 0 - m_Name: "2_\u67D0\u6C34\u679C\u624B\u673A" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1142617115 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1142617114} - 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: 1095723333} - - {fileID: 1594434493} - m_Father: {fileID: 1267491321} - 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: 16, y: 0} - m_SizeDelta: {x: 102, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1142617116 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1142617114} - 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 &1142617117 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1142617114} - 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: 1142617118} - 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 &1142617118 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1142617114} - 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 &1142617119 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1142617114} --- !u!1 &1142719706 GameObject: m_ObjectHideFlags: 0 @@ -639167,7 +642812,7 @@ RectTransform: m_GameObject: {fileID: 1143388991} 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: 449267886} m_RootOrder: 7 @@ -641215,80 +644860,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} ---- !u!1 &1148885961 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1148885962} - - component: {fileID: 1148885964} - - component: {fileID: 1148885963} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1148885962 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1148885961} - 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: 1575333951} - 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: 32, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1148885963 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1148885961} - 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: "\u56FE\u4E00" ---- !u!222 &1148885964 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1148885961} --- !u!1 &1149114409 GameObject: m_ObjectHideFlags: 0 @@ -641824,6 +645395,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1149664597} +--- !u!1 &1149726835 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1149726836} + - component: {fileID: 1149726838} + - component: {fileID: 1149726837} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1149726836 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1149726835} + 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: 83523746} + m_Father: {fileID: 2065663859} + 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: 48, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1149726837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1149726835} + 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 &1149726838 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1149726835} --- !u!1 &1149736754 GameObject: m_ObjectHideFlags: 0 @@ -642552,6 +646192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -642597,6 +646238,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -642682,6 +646324,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -642728,6 +646371,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 117 @@ -642789,6 +646433,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -642835,6 +646480,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 89 @@ -642896,6 +646542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -642942,6 +646589,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 120 @@ -643003,6 +646651,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643049,6 +646698,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 67 @@ -643110,6 +646760,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643156,6 +646807,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 65 @@ -643217,6 +646869,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643263,6 +646916,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 91 @@ -643324,6 +646978,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643370,6 +647025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 117 @@ -643431,6 +647087,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643477,6 +647134,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 71 @@ -643538,6 +647196,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643584,6 +647243,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 88 @@ -643645,6 +647305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643691,6 +647352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 64 @@ -643752,6 +647414,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643798,6 +647461,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 110 @@ -643859,6 +647523,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -643905,6 +647570,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 144 @@ -643966,6 +647632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -644012,6 +647679,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 61 @@ -644073,6 +647741,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -644119,6 +647788,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 84 @@ -644200,6 +647870,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -644283,6 +647954,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -644367,6 +648039,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -644450,6 +648123,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -647424,7 +651098,7 @@ MonoBehaviour: m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} m_Name: m_EditorClassIdentifier: - m_Content: {fileID: 37761823} + m_Content: {fileID: 1229419434} m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 @@ -647502,7 +651176,7 @@ RectTransform: m_GameObject: {fileID: 1158207716} 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: 1146192} m_Father: {fileID: 926932800} @@ -648537,6 +652211,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -648582,6 +652257,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -648667,6 +652343,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -648713,6 +652390,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 478.4 @@ -648774,6 +652452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -648820,6 +652499,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 100 @@ -648881,6 +652561,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -648927,6 +652608,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 40 @@ -648988,6 +652670,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -649034,6 +652717,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 50 @@ -649095,6 +652779,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -649141,6 +652826,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 60 @@ -649359,6 +653045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -649404,6 +653091,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -649489,6 +653177,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -649535,6 +653224,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1111 @@ -649596,6 +653286,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -649642,6 +653333,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 76 @@ -649703,6 +653395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -649749,6 +653442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 79 @@ -649810,6 +653504,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -649856,6 +653551,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 24 @@ -649917,6 +653613,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -649963,6 +653660,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 10 @@ -650181,6 +653879,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -650226,6 +653925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -650311,6 +654011,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -650357,6 +654058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 111 @@ -650418,6 +654120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -650464,6 +654167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 76 @@ -650525,6 +654229,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -650571,6 +654276,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 79 @@ -650632,6 +654338,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -650678,6 +654385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 24 @@ -650739,6 +654447,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -650785,6 +654494,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 10 @@ -650857,6 +654567,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -650940,6 +654651,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -651024,6 +654736,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -651107,6 +654820,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -653511,75 +657225,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1165987656} ---- !u!1 &1166094914 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1166094915} - - component: {fileID: 1166094917} - - component: {fileID: 1166094916} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1166094915 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1166094914} - 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: 890572959} - m_Father: {fileID: 1923053469} - 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: 64, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1166094916 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1166094914} - 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 &1166094917 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1166094914} --- !u!1 &1166299315 GameObject: m_ObjectHideFlags: 0 @@ -656664,7 +660309,7 @@ RectTransform: m_GameObject: {fileID: 1175724539} 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: 2057043785} m_RootOrder: 17 @@ -657631,7 +661276,7 @@ RectTransform: m_GameObject: {fileID: 1178879083} 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: 457714496} - {fileID: 1347753907} @@ -658352,6 +661997,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -658397,6 +662043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -658482,6 +662129,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -658528,6 +662176,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 40 - 100 @@ -658590,6 +662239,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -658636,6 +662286,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -658855,6 +662506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -658900,6 +662552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -658985,6 +662638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -659031,6 +662685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -659879,6 +663534,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1183239230} +--- !u!1 &1183433381 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1183433382} + - component: {fileID: 1183433384} + - component: {fileID: 1183433383} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1183433382 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1183433381} + 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: 1101719826} + 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 &1183433383 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1183433381} + 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.83137256, g: 0.50980395, b: 0.39607844, 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 &1183433384 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1183433381} --- !u!1 &1183584217 GameObject: m_ObjectHideFlags: 0 @@ -662619,6 +666342,137 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1190818557 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1190818558} + - component: {fileID: 1190818562} + - component: {fileID: 1190818561} + - component: {fileID: 1190818560} + - component: {fileID: 1190818559} + m_Layer: 5 + m_Name: "btn_\u6563\u70B9\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1190818558 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1190818557} + 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: 156811550} + m_Father: {fileID: 1984073382} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1190818559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1190818557} + 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 + delegates: [] +--- !u!114 &1190818560 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1190818557} + 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: 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 + 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: 1190818561} + 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 &1190818561 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1190818557} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1190818562 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1190818557} --- !u!1 &1191294711 GameObject: m_ObjectHideFlags: 0 @@ -670389,7 +674243,7 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: "\u96F7\u8FBE\u56FE RadarChart" + m_Text: "\u70ED\u529B\u56FE HeatmapChart" --- !u!222 &1214602855 CanvasRenderer: m_ObjectHideFlags: 0 @@ -670454,7 +674308,7 @@ RectTransform: m_GameObject: {fileID: 1214750942} 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: 2057043785} m_RootOrder: 19 @@ -672966,7 +676820,7 @@ RectTransform: m_GameObject: {fileID: 1222484812} 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: 2057043785} m_RootOrder: 16 @@ -675276,7 +679130,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!224 &1229419434 RectTransform: m_ObjectHideFlags: 0 @@ -675814,7 +679668,7 @@ RectTransform: m_GameObject: {fileID: 1230415991} 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: 1078410190} m_RootOrder: 7 @@ -679562,7 +683416,7 @@ RectTransform: m_GameObject: {fileID: 1240198183} 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: 1972589982} - {fileID: 1142467465} @@ -679607,137 +683461,6 @@ RectTransform: m_AnchoredPosition: {x: -5, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 1, y: 0.5} ---- !u!1 &1240332484 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1240332485} - - component: {fileID: 1240332489} - - component: {fileID: 1240332488} - - component: {fileID: 1240332487} - - component: {fileID: 1240332486} - m_Layer: 5 - m_Name: "btn_\u997C\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1240332485 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1240332484} - 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: 1845644411} - m_Father: {fileID: 1984073382} - 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: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1240332486 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1240332484} - 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 - delegates: [] ---- !u!114 &1240332487 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1240332484} - 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: 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 - 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: 1240332488} - 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 &1240332488 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1240332484} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &1240332489 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1240332484} --- !u!1 &1240671536 GameObject: m_ObjectHideFlags: 0 @@ -688328,6 +692051,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1265797364} +--- !u!1 &1266069850 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1266069851} + - component: {fileID: 1266069853} + - component: {fileID: 1266069852} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1266069851 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1266069850} + 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: 1571639440} + m_Father: {fileID: 1306215264} + 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: 32, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1266069852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1266069850} + 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 &1266069853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1266069850} --- !u!1 &1266247343 GameObject: m_ObjectHideFlags: 0 @@ -688396,150 +692188,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1266247343} ---- !u!1 &1266275634 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1266275635} - - component: {fileID: 1266275639} - - component: {fileID: 1266275638} - - component: {fileID: 1266275637} - - component: {fileID: 1266275636} - m_Layer: 0 - m_Name: "3_\u964D\u6C34\u91CF" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1266275635 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1266275634} - 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: 1049889169} - - {fileID: 409336971} - m_Father: {fileID: 1267491321} - m_RootOrder: 3 - 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: 107, y: 0} - m_SizeDelta: {x: 70, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1266275636 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1266275634} - 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 &1266275637 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1266275634} - 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: 1266275638} - 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 &1266275638 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1266275634} - 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 &1266275639 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1266275634} --- !u!1 &1266352309 GameObject: m_ObjectHideFlags: 0 @@ -688958,13 +692606,13 @@ RectTransform: m_GameObject: {fileID: 1267491320} 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: 875529678} - - {fileID: 1799204066} - - {fileID: 1142617115} - - {fileID: 1266275635} - - {fileID: 2067913524} + - {fileID: 1671432792} + - {fileID: 945893680} + - {fileID: 2144988468} + - {fileID: 1101719826} + - {fileID: 2065663859} m_Father: {fileID: 2057043785} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -697004,80 +700652,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1290015105} ---- !u!1 &1290090332 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1290090333} - - component: {fileID: 1290090335} - - component: {fileID: 1290090334} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1290090333 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1290090332} - 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: 239759328} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1290090334 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1290090332} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u5176\u4ED6" ---- !u!222 &1290090335 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1290090332} --- !u!1 &1290332669 GameObject: m_ObjectHideFlags: 0 @@ -699898,6 +703472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -699943,6 +703518,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -700028,6 +703604,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -700074,6 +703651,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 335 @@ -700135,6 +703713,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -700181,6 +703760,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 310 @@ -700242,6 +703822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -700288,6 +703869,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 274 @@ -700349,6 +703931,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -700395,6 +703978,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 235 @@ -700456,6 +704040,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -700502,6 +704087,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 400 @@ -704399,6 +707985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -704444,6 +708031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -704529,6 +708117,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -704575,6 +708164,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -704637,6 +708227,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -704683,6 +708274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -704745,6 +708337,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -704791,6 +708384,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -705280,6 +708874,150 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1306215263 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1306215264} + - component: {fileID: 1306215268} + - component: {fileID: 1306215267} + - component: {fileID: 1306215266} + - component: {fileID: 1306215265} + m_Layer: 0 + m_Name: "1_\u56FE\u4E8C" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1306215264 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1306215263} + 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: 2050019860} + - {fileID: 1266069851} + m_Father: {fileID: 38397381} + 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: -29.5, y: 0} + m_SizeDelta: {x: 54, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1306215265 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1306215263} + 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 &1306215266 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1306215263} + 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: 1306215267} + 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 &1306215267 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1306215263} + 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 &1306215268 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1306215263} --- !u!1 &1306261591 GameObject: m_ObjectHideFlags: 0 @@ -707834,7 +711572,7 @@ RectTransform: m_GameObject: {fileID: 1312608026} 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: 1640796314} m_RootOrder: 9 @@ -711969,80 +715707,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1321575074} ---- !u!1 &1321660057 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1321660058} - - component: {fileID: 1321660060} - - component: {fileID: 1321660059} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1321660058 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1321660057} - 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: 1378802971} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1321660059 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1321660057} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u73AF\u5F62\u56FE" ---- !u!222 &1321660060 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1321660057} --- !u!1 &1321714019 GameObject: m_ObjectHideFlags: 0 @@ -712704,7 +716368,7 @@ RectTransform: m_GameObject: {fileID: 1323987900} 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: 575007912} - {fileID: 124999429} @@ -718947,7 +722611,7 @@ RectTransform: m_GameObject: {fileID: 1340552189} 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: 144092753} - {fileID: 735875136} @@ -722276,6 +725940,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1347439219} +--- !u!1 &1347497221 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1347497222} + - component: {fileID: 1347497224} + - component: {fileID: 1347497223} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1347497222 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1347497221} + 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: 564636828} + m_Father: {fileID: 1046295484} + 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: 26, y: 0} + m_SizeDelta: {x: 64, y: 16} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1347497223 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1347497221} + 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 &1347497224 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1347497221} --- !u!1 &1347541456 GameObject: m_ObjectHideFlags: 0 @@ -731367,6 +735100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -731412,6 +735146,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -731497,6 +735232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -731543,6 +735279,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 0 @@ -731604,6 +735341,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -731650,6 +735388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.017453292 - 0.017452406 @@ -731711,6 +735450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -731757,6 +735497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.034906585 - 0.034899496 @@ -731818,6 +735559,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -731864,6 +735606,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.05235988 - 0.05233596 @@ -731925,6 +735668,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -731971,6 +735715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.06981317 - 0.06975647 @@ -732032,6 +735777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732078,6 +735824,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.08726646 - 0.08715574 @@ -732139,6 +735886,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732185,6 +735933,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.10471976 - 0.104528464 @@ -732246,6 +735995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732292,6 +736042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.12217305 - 0.12186935 @@ -732353,6 +736104,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732399,6 +736151,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.13962634 - 0.1391731 @@ -732460,6 +736213,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732506,6 +736260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.15707964 - 0.15643448 @@ -732567,6 +736322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732613,6 +736369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.17453292 - 0.17364818 @@ -732674,6 +736431,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732720,6 +736478,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.19198622 - 0.190809 @@ -732781,6 +736540,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732827,6 +736587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.20943952 - 0.2079117 @@ -732888,6 +736649,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -732934,6 +736696,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.2268928 - 0.22495104 @@ -732995,6 +736758,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733041,6 +736805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.2443461 - 0.2419219 @@ -733102,6 +736867,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733148,6 +736914,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.2617994 - 0.25881904 @@ -733209,6 +736976,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733255,6 +737023,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.27925268 - 0.27563736 @@ -733316,6 +737085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733362,6 +737132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.29670596 - 0.2923717 @@ -733423,6 +737194,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733469,6 +737241,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.31415927 - 0.309017 @@ -733530,6 +737303,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733576,6 +737350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.33161256 - 0.32556814 @@ -733637,6 +737412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733683,6 +737459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.34906584 - 0.34202012 @@ -733744,6 +737521,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733790,6 +737568,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.36651915 - 0.35836795 @@ -733851,6 +737630,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -733897,6 +737677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.38397244 - 0.37460658 @@ -733958,6 +737739,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734004,6 +737786,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.40142572 - 0.39073113 @@ -734065,6 +737848,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734111,6 +737895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.41887903 - 0.40673664 @@ -734172,6 +737957,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734218,6 +738004,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.43633232 - 0.42261827 @@ -734279,6 +738066,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734325,6 +738113,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.4537856 - 0.43837115 @@ -734386,6 +738175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734432,6 +738222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.47123888 - 0.4539905 @@ -734493,6 +738284,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734539,6 +738331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.4886922 - 0.46947157 @@ -734600,6 +738393,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734646,6 +738440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.5061455 - 0.4848096 @@ -734707,6 +738502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734753,6 +738549,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.5235988 - 0.5 @@ -734814,6 +738611,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734860,6 +738658,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.54105204 - 0.5150381 @@ -734921,6 +738720,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -734967,6 +738767,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.55850536 - 0.52991927 @@ -735028,6 +738829,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735074,6 +738876,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.57595867 - 0.54463905 @@ -735135,6 +738938,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735181,6 +738985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.5934119 - 0.5591929 @@ -735242,6 +739047,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735288,6 +739094,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.61086524 - 0.57357645 @@ -735349,6 +739156,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735395,6 +739203,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.62831855 - 0.58778524 @@ -735456,6 +739265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735502,6 +739312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.6457718 - 0.601815 @@ -735563,6 +739374,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735609,6 +739421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.6632251 - 0.6156615 @@ -735670,6 +739483,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735716,6 +739530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.6806784 - 0.6293204 @@ -735777,6 +739592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735823,6 +739639,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.6981317 - 0.6427876 @@ -735884,6 +739701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -735930,6 +739748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.715585 - 0.656059 @@ -735991,6 +739810,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736037,6 +739857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.7330383 - 0.6691306 @@ -736098,6 +739919,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736144,6 +739966,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.75049156 - 0.6819984 @@ -736205,6 +740028,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736251,6 +740075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.7679449 - 0.6946584 @@ -736312,6 +740137,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736358,6 +740184,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.7853982 - 0.70710677 @@ -736419,6 +740246,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736465,6 +740293,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.80285144 - 0.7193398 @@ -736526,6 +740355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736572,6 +740402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.82030475 - 0.7313537 @@ -736633,6 +740464,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736679,6 +740511,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.83775806 - 0.74314487 @@ -736740,6 +740573,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736786,6 +740620,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.8552113 - 0.75470954 @@ -736847,6 +740682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -736893,6 +740729,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.87266463 - 0.76604444 @@ -736954,6 +740791,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737000,6 +740838,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.8901179 - 0.7771459 @@ -737061,6 +740900,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737107,6 +740947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.9075712 - 0.7880107 @@ -737168,6 +741009,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737214,6 +741056,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.9250245 - 0.79863554 @@ -737275,6 +741118,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737321,6 +741165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.94247776 - 0.809017 @@ -737382,6 +741227,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737428,6 +741274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.9599311 - 0.81915206 @@ -737489,6 +741336,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737535,6 +741383,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.9773844 - 0.82903755 @@ -737596,6 +741445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737642,6 +741492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0.99483764 - 0.83867055 @@ -737703,6 +741554,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737749,6 +741601,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.012291 - 0.8480481 @@ -737810,6 +741663,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737856,6 +741710,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.0297443 - 0.8571673 @@ -737917,6 +741772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -737963,6 +741819,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.0471976 - 0.86602545 @@ -738024,6 +741881,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738070,6 +741928,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.0646509 - 0.8746197 @@ -738131,6 +741990,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738177,6 +742037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.0821041 - 0.88294756 @@ -738238,6 +742099,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738284,6 +742146,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.0995574 - 0.8910065 @@ -738345,6 +742208,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738391,6 +742255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.1170107 - 0.89879405 @@ -738452,6 +742317,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738498,6 +742364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.134464 - 0.9063078 @@ -738559,6 +742426,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738605,6 +742473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.1519173 - 0.9135455 @@ -738666,6 +742535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738712,6 +742582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.1693705 - 0.9205048 @@ -738773,6 +742644,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738819,6 +742691,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.1868238 - 0.92718387 @@ -738880,6 +742753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -738926,6 +742800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.2042772 - 0.9335804 @@ -738987,6 +742862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739033,6 +742909,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.2217305 - 0.9396926 @@ -739094,6 +742971,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739140,6 +743018,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.2391838 - 0.94551855 @@ -739201,6 +743080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739247,6 +743127,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.2566371 - 0.95105654 @@ -739308,6 +743189,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739354,6 +743236,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.2740903 - 0.9563047 @@ -739415,6 +743298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739461,6 +743345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.2915436 - 0.9612617 @@ -739522,6 +743407,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739568,6 +743454,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.3089969 - 0.9659258 @@ -739629,6 +743516,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739675,6 +743563,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.3264502 - 0.9702957 @@ -739736,6 +743625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739782,6 +743672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.3439035 - 0.97437006 @@ -739843,6 +743734,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739889,6 +743781,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.3613569 - 0.9781476 @@ -739950,6 +743843,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -739996,6 +743890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.37881 - 0.98162717 @@ -740057,6 +743952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740103,6 +743999,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.3962634 - 0.9848077 @@ -740164,6 +744061,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740210,6 +744108,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.4137167 - 0.98768836 @@ -740271,6 +744170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740317,6 +744217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.43117 - 0.99026805 @@ -740378,6 +744279,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740424,6 +744326,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.4486233 - 0.99254614 @@ -740485,6 +744388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740531,6 +744435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.4660766 - 0.9945219 @@ -740592,6 +744497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740638,6 +744544,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.4835298 - 0.9961947 @@ -740699,6 +744606,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740745,6 +744653,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.5009831 - 0.9975641 @@ -740806,6 +744715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740852,6 +744762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.5184364 - 0.9986295 @@ -740913,6 +744824,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -740959,6 +744871,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.5358897 - 0.99939084 @@ -741020,6 +744933,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741066,6 +744980,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.553343 - 0.9998477 @@ -741127,6 +745042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741173,6 +745089,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.5707964 - 1 @@ -741234,6 +745151,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741280,6 +745198,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.5882496 - 0.9998477 @@ -741341,6 +745260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741387,6 +745307,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.6057029 - 0.99939084 @@ -741448,6 +745369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741494,6 +745416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.6231562 - 0.9986295 @@ -741555,6 +745478,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741601,6 +745525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.6406095 - 0.9975641 @@ -741662,6 +745587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741708,6 +745634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.6580628 - 0.9961947 @@ -741769,6 +745696,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741815,6 +745743,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.6755161 - 0.9945219 @@ -741876,6 +745805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -741922,6 +745852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.6929693 - 0.99254614 @@ -741983,6 +745914,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742029,6 +745961,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.7104226 - 0.99026805 @@ -742090,6 +746023,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742136,6 +746070,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.727876 - 0.98768836 @@ -742197,6 +746132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742243,6 +746179,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.7453293 - 0.9848077 @@ -742304,6 +746241,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742350,6 +746288,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.7627826 - 0.98162717 @@ -742411,6 +746350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742457,6 +746397,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.7802358 - 0.9781476 @@ -742518,6 +746459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742564,6 +746506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.7976891 - 0.97437006 @@ -742625,6 +746568,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742671,6 +746615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.8151424 - 0.9702957 @@ -742732,6 +746677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742778,6 +746724,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.8325957 - 0.9659258 @@ -742839,6 +746786,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742885,6 +746833,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.850049 - 0.9612617 @@ -742946,6 +746895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -742992,6 +746942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.8675023 - 0.9563047 @@ -743053,6 +747004,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743099,6 +747051,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.8849555 - 0.95105654 @@ -743160,6 +747113,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743206,6 +747160,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.9024088 - 0.9455186 @@ -743267,6 +747222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743313,6 +747269,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.9198622 - 0.9396926 @@ -743374,6 +747331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743420,6 +747378,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.9373155 - 0.93358046 @@ -743481,6 +747440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743527,6 +747487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.9547688 - 0.92718387 @@ -743588,6 +747549,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743634,6 +747596,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.9722221 - 0.92050487 @@ -743695,6 +747658,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743741,6 +747705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1.9896753 - 0.9135455 @@ -743802,6 +747767,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743848,6 +747814,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.0071287 - 0.90630776 @@ -743909,6 +747876,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -743955,6 +747923,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.024582 - 0.89879405 @@ -744016,6 +747985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744062,6 +748032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.042035 - 0.8910066 @@ -744123,6 +748094,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744169,6 +748141,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.0594885 - 0.88294756 @@ -744230,6 +748203,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744276,6 +748250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.0769417 - 0.8746197 @@ -744337,6 +748312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744383,6 +748359,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.0943952 - 0.8660254 @@ -744444,6 +748421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744490,6 +748468,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.1118484 - 0.8571673 @@ -744551,6 +748530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744597,6 +748577,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.1293018 - 0.84804803 @@ -744658,6 +748639,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744704,6 +748686,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.146755 - 0.83867055 @@ -744765,6 +748748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744811,6 +748795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.1642082 - 0.8290376 @@ -744872,6 +748857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -744918,6 +748904,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.1816616 - 0.819152 @@ -744979,6 +748966,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745025,6 +749013,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.1991148 - 0.809017 @@ -745086,6 +749075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745132,6 +749122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.2165682 - 0.7986355 @@ -745193,6 +749184,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745239,6 +749231,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.2340214 - 0.7880108 @@ -745300,6 +749293,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745346,6 +749340,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.2514746 - 0.77714604 @@ -745407,6 +749402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745453,6 +749449,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.268928 - 0.76604444 @@ -745514,6 +749511,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745560,6 +749558,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.2863812 - 0.7547096 @@ -745621,6 +749620,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745667,6 +749667,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.3038347 - 0.7431448 @@ -745728,6 +749729,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745774,6 +749776,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.3212879 - 0.7313537 @@ -745835,6 +749838,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745881,6 +749885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.338741 - 0.7193399 @@ -745942,6 +749947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -745988,6 +749994,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.3561945 - 0.70710677 @@ -746049,6 +750056,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746095,6 +750103,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.3736477 - 0.69465846 @@ -746156,6 +750165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746202,6 +750212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.3911011 - 0.6819983 @@ -746263,6 +750274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746309,6 +750321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.4085543 - 0.6691306 @@ -746370,6 +750383,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746416,6 +750430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.4260077 - 0.65605897 @@ -746477,6 +750492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746523,6 +750539,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.443461 - 0.64278764 @@ -746584,6 +750601,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746630,6 +750648,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.4609141 - 0.6293205 @@ -746691,6 +750710,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746737,6 +750757,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.4783676 - 0.61566144 @@ -746798,6 +750819,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746844,6 +750866,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.4958208 - 0.6018151 @@ -746905,6 +750928,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -746951,6 +750975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.5132742 - 0.5877852 @@ -747012,6 +751037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747058,6 +751084,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.5307274 - 0.57357645 @@ -747119,6 +751146,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747165,6 +751193,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.5481806 - 0.559193 @@ -747226,6 +751255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747272,6 +751302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.565634 - 0.54463905 @@ -747333,6 +751364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747379,6 +751411,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.5830872 - 0.5299193 @@ -747440,6 +751473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747486,6 +751520,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.6005406 - 0.515038 @@ -747547,6 +751582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747593,6 +751629,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.6179938 - 0.50000006 @@ -747654,6 +751691,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747700,6 +751738,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.6354473 - 0.48480955 @@ -747761,6 +751800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747807,6 +751847,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.6529005 - 0.46947157 @@ -747868,6 +751909,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -747914,6 +751956,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.6703537 - 0.45399058 @@ -747975,6 +752018,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748021,6 +752065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.687807 - 0.43837112 @@ -748082,6 +752127,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748128,6 +752174,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.7052603 - 0.42261833 @@ -748189,6 +752236,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748235,6 +752283,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.7227137 - 0.40673658 @@ -748296,6 +752345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748342,6 +752392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.740167 - 0.39073116 @@ -748403,6 +752454,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748449,6 +752501,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.75762 - 0.3746067 @@ -748510,6 +752563,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748556,6 +752610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.7750735 - 0.35836792 @@ -748617,6 +752672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748663,6 +752719,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.7925267 - 0.3420202 @@ -748724,6 +752781,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748770,6 +752828,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.8099802 - 0.3255681 @@ -748831,6 +752890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748877,6 +752937,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.8274333 - 0.30901703 @@ -748938,6 +752999,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -748984,6 +753046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.8448865 - 0.29237184 @@ -749045,6 +753108,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749091,6 +753155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.86234 - 0.27563736 @@ -749152,6 +753217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749198,6 +753264,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.8797932 - 0.25881913 @@ -749259,6 +753326,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749305,6 +753373,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.8972466 - 0.24192186 @@ -749366,6 +753435,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749412,6 +753482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.9146998 - 0.22495112 @@ -749473,6 +753544,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749519,6 +753591,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.9321532 - 0.20791161 @@ -749580,6 +753653,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749626,6 +753700,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.9496064 - 0.19080901 @@ -749687,6 +753762,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749733,6 +753809,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.9670596 - 0.1736483 @@ -749794,6 +753871,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749840,6 +753918,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.984513 - 0.15643445 @@ -749901,6 +753980,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -749947,6 +754027,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.0019662 - 0.13917318 @@ -750008,6 +754089,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750054,6 +754136,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.0194197 - 0.12186928 @@ -750115,6 +754198,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750161,6 +754245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.0368729 - 0.104528494 @@ -750222,6 +754307,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750268,6 +754354,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.054326 - 0.08715588 @@ -750329,6 +754416,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750375,6 +754463,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.0717795 - 0.06975647 @@ -750436,6 +754525,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750482,6 +754572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.0892327 - 0.05233605 @@ -750543,6 +754634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750589,6 +754681,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.106686 - 0.03489945 @@ -750650,6 +754743,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750696,6 +754790,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.1241393 - 0.017452458 @@ -750757,6 +754852,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750803,6 +754899,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.1415927 - -0.00000008742278 @@ -750864,6 +754961,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -750910,6 +755008,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.159046 - -0.017452395 @@ -750971,6 +755070,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751017,6 +755117,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.1764991 - -0.034899388 @@ -751078,6 +755179,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751124,6 +755226,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.1939526 - -0.052335985 @@ -751185,6 +755288,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751231,6 +755335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.2114058 - -0.0697564 @@ -751292,6 +755397,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751338,6 +755444,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.2288592 - -0.08715581 @@ -751399,6 +755506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751445,6 +755553,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.2463124 - -0.104528435 @@ -751506,6 +755615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751552,6 +755662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.2637656 - -0.121869214 @@ -751613,6 +755724,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751659,6 +755771,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.281219 - -0.1391731 @@ -751720,6 +755833,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751766,6 +755880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.2986722 - -0.15643437 @@ -751827,6 +755942,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751873,6 +755989,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.3161256 - -0.17364822 @@ -751934,6 +756051,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -751980,6 +756098,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.3335788 - -0.19080895 @@ -752041,6 +756160,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752087,6 +756207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.3510323 - -0.20791179 @@ -752148,6 +756269,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752194,6 +756316,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.3684855 - -0.22495104 @@ -752255,6 +756378,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752301,6 +756425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.3859386 - -0.2419218 @@ -752362,6 +756487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752408,6 +756534,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.403392 - -0.25881907 @@ -752469,6 +756596,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752515,6 +756643,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.4208453 - -0.2756373 @@ -752576,6 +756705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752622,6 +756752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.4382987 - -0.29237178 @@ -752683,6 +756814,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752729,6 +756861,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.455752 - -0.30901697 @@ -752790,6 +756923,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752836,6 +756970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.473205 - -0.32556805 @@ -752897,6 +757032,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -752943,6 +757079,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.4906585 - -0.34202015 @@ -753004,6 +757141,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753050,6 +757188,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.5081117 - -0.35836786 @@ -753111,6 +757250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753157,6 +757297,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.5255651 - -0.37460664 @@ -753218,6 +757359,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753264,6 +757406,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.5430183 - -0.3907311 @@ -753325,6 +757468,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753371,6 +757515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.5604715 - -0.40673652 @@ -753432,6 +757577,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753478,6 +757624,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.577925 - -0.42261827 @@ -753539,6 +757686,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753585,6 +757733,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.5953782 - -0.43837106 @@ -753646,6 +757795,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753692,6 +757842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.6128316 - -0.45399055 @@ -753753,6 +757904,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753799,6 +757951,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.6302848 - -0.4694715 @@ -753860,6 +758013,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -753906,6 +758060,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.6477382 - -0.4848097 @@ -753967,6 +758122,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754013,6 +758169,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.6651914 - -0.49999997 @@ -754074,6 +758231,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754120,6 +758278,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.6826446 - -0.51503795 @@ -754181,6 +758340,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754227,6 +758387,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.700098 - -0.52991927 @@ -754288,6 +758449,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754334,6 +758496,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.7175512 - -0.544639 @@ -754395,6 +758558,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754441,6 +758605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.7350047 - -0.55919296 @@ -754502,6 +758667,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754548,6 +758714,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.7524579 - -0.5735764 @@ -754609,6 +758776,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754655,6 +758823,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.769911 - -0.5877851 @@ -754716,6 +758885,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754762,6 +758932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.7873645 - -0.60181504 @@ -754823,6 +758994,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754869,6 +759041,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.8048177 - -0.6156614 @@ -754930,6 +759103,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -754976,6 +759150,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.822271 - -0.62932044 @@ -755037,6 +759212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755083,6 +759259,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.8397243 - -0.6427876 @@ -755144,6 +759321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755190,6 +759368,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.8571777 - -0.6560591 @@ -755251,6 +759430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755297,6 +759477,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.874631 - -0.6691306 @@ -755358,6 +759539,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755404,6 +759586,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.8920841 - -0.68199825 @@ -755465,6 +759648,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755511,6 +759695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.9095376 - -0.6946584 @@ -755572,6 +759757,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755618,6 +759804,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.9269907 - -0.7071067 @@ -755679,6 +759866,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755725,6 +759913,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.9444442 - -0.71933985 @@ -755786,6 +759975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755832,6 +760022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.9618974 - -0.7313537 @@ -755893,6 +760084,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -755939,6 +760131,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.9793506 - -0.74314475 @@ -756000,6 +760193,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756046,6 +760240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3.996804 - -0.7547096 @@ -756107,6 +760302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756153,6 +760349,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.0142574 - -0.76604456 @@ -756214,6 +760411,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756260,6 +760458,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.0317106 - -0.777146 @@ -756321,6 +760520,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756367,6 +760567,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.049164 - -0.7880107 @@ -756428,6 +760629,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756474,6 +760676,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.066617 - -0.7986354 @@ -756535,6 +760738,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756581,6 +760785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.08407 - -0.8090168 @@ -756642,6 +760847,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756688,6 +760894,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.101524 - -0.8191521 @@ -756749,6 +760956,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756795,6 +761003,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.118977 - -0.8290376 @@ -756856,6 +761065,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -756902,6 +761112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.1364303 - -0.83867055 @@ -756963,6 +761174,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757009,6 +761221,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.1538835 - -0.84804803 @@ -757070,6 +761283,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757116,6 +761330,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.1713367 - -0.8571672 @@ -757177,6 +761392,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757223,6 +761439,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.1887903 - -0.86602545 @@ -757284,6 +761501,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757330,6 +761548,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.2062435 - -0.8746197 @@ -757391,6 +761610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757437,6 +761657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.2236967 - -0.88294756 @@ -757498,6 +761719,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757544,6 +761766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.24115 - -0.89100647 @@ -757605,6 +761828,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757651,6 +761875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.2586036 - -0.8987941 @@ -757712,6 +761937,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757758,6 +761984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.276057 - -0.9063078 @@ -757819,6 +762046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757865,6 +762093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.29351 - -0.9135454 @@ -757926,6 +762155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -757972,6 +762202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.310963 - -0.9205048 @@ -758033,6 +762264,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758079,6 +762311,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.3284163 - -0.9271838 @@ -758140,6 +762373,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758186,6 +762420,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.34587 - -0.9335805 @@ -758247,6 +762482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758293,6 +762529,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.363323 - -0.9396927 @@ -758354,6 +762591,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758400,6 +762638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.3807764 - -0.94551855 @@ -758461,6 +762700,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758507,6 +762747,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.3982296 - -0.9510565 @@ -758568,6 +762809,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758614,6 +762856,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.415683 - -0.95630467 @@ -758675,6 +762918,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758721,6 +762965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.4331365 - -0.96126175 @@ -758782,6 +763027,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758828,6 +763074,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.4505897 - -0.9659259 @@ -758889,6 +763136,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -758935,6 +763183,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.468043 - -0.9702957 @@ -758996,6 +763245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759042,6 +763292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.485496 - -0.97437006 @@ -759103,6 +763354,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759149,6 +763401,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.502949 - -0.97814757 @@ -759210,6 +763463,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759256,6 +763510,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.520403 - -0.9816272 @@ -759317,6 +763572,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759363,6 +763619,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.537856 - -0.9848078 @@ -759424,6 +763681,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759470,6 +763728,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.5553093 - -0.9876883 @@ -759531,6 +763790,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759577,6 +763837,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.5727625 - -0.99026805 @@ -759638,6 +763899,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759684,6 +763946,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.5902157 - -0.99254614 @@ -759745,6 +764008,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759791,6 +764055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.6076694 - -0.9945219 @@ -759852,6 +764117,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -759898,6 +764164,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.6251225 - -0.9961947 @@ -759959,6 +764226,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760005,6 +764273,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.6425757 - -0.997564 @@ -760066,6 +764335,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760112,6 +764382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.660029 - -0.9986295 @@ -760173,6 +764444,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760219,6 +764491,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.677482 - -0.99939084 @@ -760280,6 +764553,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760326,6 +764600,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.694936 - -0.9998477 @@ -760387,6 +764662,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760433,6 +764709,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.712389 - -1 @@ -760494,6 +764771,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760540,6 +764818,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.729842 - -0.9998477 @@ -760601,6 +764880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760647,6 +764927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.7472954 - -0.99939084 @@ -760708,6 +764989,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760754,6 +765036,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.764749 - -0.9986295 @@ -760815,6 +765098,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760861,6 +765145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.7822022 - -0.997564 @@ -760922,6 +765207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -760968,6 +765254,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.7996554 - -0.9961947 @@ -761029,6 +765316,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761075,6 +765363,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.8171086 - -0.9945219 @@ -761136,6 +765425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761182,6 +765472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.834562 - -0.9925462 @@ -761243,6 +765534,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761289,6 +765581,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.8520155 - -0.99026805 @@ -761350,6 +765643,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761396,6 +765690,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.8694687 - -0.9876883 @@ -761457,6 +765752,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761503,6 +765799,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.886922 - -0.9848077 @@ -761564,6 +765861,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761610,6 +765908,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.904375 - -0.9816272 @@ -761671,6 +765970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761717,6 +766017,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.9218283 - -0.9781476 @@ -761778,6 +766079,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761824,6 +766126,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.939282 - -0.97437 @@ -761885,6 +766188,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -761931,6 +766235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.956735 - -0.9702957 @@ -761992,6 +766297,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762038,6 +766344,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.9741883 - -0.9659258 @@ -762099,6 +766406,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762145,6 +766453,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4.9916415 - -0.96126175 @@ -762206,6 +766515,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762252,6 +766562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.0090947 - -0.95630485 @@ -762313,6 +766624,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762359,6 +766671,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.0265484 - -0.9510565 @@ -762420,6 +766733,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762466,6 +766780,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.0440016 - -0.94551855 @@ -762527,6 +766842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762573,6 +766889,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.061455 - -0.9396926 @@ -762634,6 +766951,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762680,6 +766998,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.078908 - -0.93358046 @@ -762741,6 +767060,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762787,6 +767107,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.096361 - -0.9271839 @@ -762848,6 +767169,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -762894,6 +767216,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.113815 - -0.9205048 @@ -762955,6 +767278,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763001,6 +767325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.131268 - -0.9135454 @@ -763062,6 +767387,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763108,6 +767434,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.148721 - -0.9063078 @@ -763169,6 +767496,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763215,6 +767543,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.1661744 - -0.8987941 @@ -763276,6 +767605,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763322,6 +767652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.1836276 - -0.89100665 @@ -763383,6 +767714,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763429,6 +767761,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.2010813 - -0.88294756 @@ -763490,6 +767823,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763536,6 +767870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.2185345 - -0.8746197 @@ -763597,6 +767932,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763643,6 +767979,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.2359877 - -0.86602545 @@ -763704,6 +768041,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763750,6 +768088,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.253441 - -0.8571674 @@ -763811,6 +768150,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763857,6 +768197,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.2708945 - -0.848048 @@ -763918,6 +768259,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -763964,6 +768306,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.2883477 - -0.8386705 @@ -764025,6 +768368,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764071,6 +768415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.305801 - -0.8290376 @@ -764132,6 +768477,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764178,6 +768524,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.323254 - -0.8191521 @@ -764239,6 +768586,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764285,6 +768633,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.3407073 - -0.8090171 @@ -764346,6 +768695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764392,6 +768742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.358161 - -0.7986354 @@ -764453,6 +768804,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764499,6 +768851,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.375614 - -0.7880107 @@ -764560,6 +768913,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764606,6 +768960,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.3930674 - -0.777146 @@ -764667,6 +769022,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764713,6 +769069,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.4105206 - -0.7660445 @@ -764774,6 +769131,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764820,6 +769178,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.4279737 - -0.7547097 @@ -764881,6 +769240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -764927,6 +769287,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.4454274 - -0.74314475 @@ -764988,6 +769349,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765034,6 +769396,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.4628806 - -0.73135364 @@ -765095,6 +769458,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765141,6 +769505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.480334 - -0.71933985 @@ -765202,6 +769567,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765248,6 +769614,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.497787 - -0.7071069 @@ -765309,6 +769676,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765355,6 +769723,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.51524 - -0.6946585 @@ -765416,6 +769785,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765462,6 +769832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.532694 - -0.68199825 @@ -765523,6 +769894,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765569,6 +769941,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.550147 - -0.66913056 @@ -765630,6 +770003,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765676,6 +770050,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.5676003 - -0.6560591 @@ -765737,6 +770112,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765783,6 +770159,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.5850534 - -0.64278775 @@ -765844,6 +770221,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765890,6 +770268,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.6025066 - -0.6293206 @@ -765951,6 +770330,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -765997,6 +770377,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.6199603 - -0.6156614 @@ -766058,6 +770439,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766104,6 +770486,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.6374135 - -0.601815 @@ -766165,6 +770548,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766211,6 +770595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.6548667 - -0.5877853 @@ -766272,6 +770657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766318,6 +770704,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.67232 - -0.57357657 @@ -766379,6 +770766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766425,6 +770813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.689773 - -0.55919313 @@ -766486,6 +770875,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766532,6 +770922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.7072268 - -0.54463893 @@ -766593,6 +770984,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766639,6 +771031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.72468 - -0.52991927 @@ -766700,6 +771093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766746,6 +771140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.742133 - -0.51503813 @@ -766807,6 +771202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766853,6 +771249,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.7595863 - -0.5000002 @@ -766914,6 +771311,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -766960,6 +771358,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.77704 - -0.48480946 @@ -767021,6 +771420,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767067,6 +771467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.794493 - -0.46947148 @@ -767128,6 +771529,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767174,6 +771576,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.8119464 - -0.45399052 @@ -767235,6 +771638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767281,6 +771685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.8293996 - -0.43837124 @@ -767342,6 +771747,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767388,6 +771794,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.846853 - -0.42261845 @@ -767449,6 +771856,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767495,6 +771903,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.8643064 - -0.4067365 @@ -767556,6 +771965,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767602,6 +772012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.8817596 - -0.39073107 @@ -767663,6 +772074,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767709,6 +772121,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.899213 - -0.37460664 @@ -767770,6 +772183,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767816,6 +772230,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.916666 - -0.35836807 @@ -767877,6 +772292,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -767923,6 +772339,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.934119 - -0.34202036 @@ -767984,6 +772401,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768030,6 +772448,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.951573 - -0.32556802 @@ -768091,6 +772510,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768137,6 +772557,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.969026 - -0.30901694 @@ -768198,6 +772619,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768244,6 +772666,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5.9864793 - -0.29237175 @@ -768305,6 +772728,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768351,6 +772775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.0039325 - -0.2756375 @@ -768412,6 +772837,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768458,6 +772884,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.0213857 - -0.25881928 @@ -768519,6 +772946,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768565,6 +772993,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.0388393 - -0.24192177 @@ -768626,6 +773055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768672,6 +773102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.0562925 - -0.22495103 @@ -768733,6 +773164,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768779,6 +773211,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.0737457 - -0.20791176 @@ -768840,6 +773273,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768886,6 +773320,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.091199 - -0.19080916 @@ -768947,6 +773382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -768993,6 +773429,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.108652 - -0.17364845 @@ -769054,6 +773491,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769100,6 +773538,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.126106 - -0.15643436 @@ -769161,6 +773600,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769207,6 +773647,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.143559 - -0.13917309 @@ -769268,6 +773709,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769314,6 +773756,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.161012 - -0.12186943 @@ -769375,6 +773818,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769421,6 +773865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.1784654 - -0.10452865 @@ -769482,6 +773927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769528,6 +773974,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.1959186 - -0.08715603 @@ -769589,6 +774036,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769635,6 +774083,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.213372 - -0.06975638 @@ -769696,6 +774145,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769742,6 +774192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.2308254 - -0.052335963 @@ -769803,6 +774254,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769849,6 +774301,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.2482786 - -0.0348996 @@ -769910,6 +774363,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -769956,6 +774410,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.265732 - -0.017452609 @@ -770017,6 +774472,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770063,6 +774519,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.2831855 - 0.00000017484555 @@ -770124,6 +774581,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770170,6 +774628,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.3006387 - 0.017452482 @@ -770231,6 +774690,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770277,6 +774737,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.318092 - 0.034899473 @@ -770338,6 +774799,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770384,6 +774846,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.335545 - 0.052335836 @@ -770445,6 +774908,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770491,6 +774955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.3529983 - 0.069756255 @@ -770552,6 +775017,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770598,6 +775064,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.370452 - 0.0871559 @@ -770659,6 +775126,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770705,6 +775173,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.387905 - 0.104528524 @@ -770766,6 +775235,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770812,6 +775282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.4053583 - 0.1218693 @@ -770873,6 +775344,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -770919,6 +775391,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.4228115 - 0.13917296 @@ -770980,6 +775453,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771026,6 +775500,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.4402647 - 0.15643422 @@ -771087,6 +775562,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771133,6 +775609,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.4577184 - 0.17364831 @@ -771194,6 +775671,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771240,6 +775718,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.4751716 - 0.19080904 @@ -771301,6 +775780,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771347,6 +775827,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.4926248 - 0.20791164 @@ -771408,6 +775889,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771454,6 +775936,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.510078 - 0.2249509 @@ -771515,6 +775998,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771561,6 +776045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.527531 - 0.24192165 @@ -771622,6 +776107,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771668,6 +776154,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.544985 - 0.25881916 @@ -771729,6 +776216,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771775,6 +776263,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.562438 - 0.2756374 @@ -771836,6 +776325,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771882,6 +776372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.579891 - 0.29237163 @@ -771943,6 +776434,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -771989,6 +776481,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.5973444 - 0.30901682 @@ -772050,6 +776543,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772096,6 +776590,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.6147976 - 0.3255679 @@ -772157,6 +776652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772203,6 +776699,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.6322513 - 0.34202024 @@ -772264,6 +776761,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772310,6 +776808,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.6497045 - 0.35836795 @@ -772371,6 +776870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772417,6 +776917,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.6671576 - 0.37460652 @@ -772478,6 +776979,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772524,6 +777026,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.684611 - 0.39073095 @@ -772585,6 +777088,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772631,6 +777135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.7020645 - 0.40673682 @@ -772692,6 +777197,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772738,6 +777244,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.7195177 - 0.42261833 @@ -772799,6 +777306,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772845,6 +777353,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.736971 - 0.43837112 @@ -772906,6 +777415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -772952,6 +777462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.754424 - 0.4539904 @@ -773013,6 +777524,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773059,6 +777571,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.7718773 - 0.46947137 @@ -773120,6 +777633,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773166,6 +777680,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.789331 - 0.48480976 @@ -773227,6 +777742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773273,6 +777789,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.806784 - 0.50000006 @@ -773334,6 +777851,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773380,6 +777898,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.8242373 - 0.5150381 @@ -773441,6 +777960,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773487,6 +778007,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.8416905 - 0.52991915 @@ -773548,6 +778069,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773594,6 +778116,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.8591437 - 0.5446389 @@ -773655,6 +778178,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773701,6 +778225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.8765974 - 0.559193 @@ -773762,6 +778287,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773808,6 +778334,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.8940506 - 0.57357645 @@ -773869,6 +778396,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -773915,6 +778443,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.911504 - 0.58778524 @@ -773976,6 +778505,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774022,6 +778552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.928957 - 0.6018149 @@ -774083,6 +778614,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774129,6 +778661,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.94641 - 0.61566126 @@ -774190,6 +778723,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774236,6 +778770,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.963864 - 0.6293205 @@ -774297,6 +778832,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774343,6 +778879,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.981317 - 0.64278764 @@ -774404,6 +778941,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774450,6 +778988,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6.99877 - 0.65605897 @@ -774511,6 +779050,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774557,6 +779097,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.0162234 - 0.6691305 @@ -774618,6 +779159,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774664,6 +779206,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.0336766 - 0.6819982 @@ -774725,6 +779268,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774771,6 +779315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.0511303 - 0.69465846 @@ -774832,6 +779377,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774878,6 +779424,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.0685835 - 0.70710677 @@ -774939,6 +779486,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -774985,6 +779533,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.0860367 - 0.7193397 @@ -775046,6 +779595,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775092,6 +779642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.10349 - 0.7313536 @@ -775153,6 +779704,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775199,6 +779751,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.120943 - 0.74314463 @@ -775260,6 +779813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775306,6 +779860,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.1383967 - 0.75470966 @@ -775367,6 +779922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775413,6 +779969,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.15585 - 0.76604444 @@ -775474,6 +780031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775520,6 +780078,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.173303 - 0.7771459 @@ -775581,6 +780140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775627,6 +780187,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.1907563 - 0.78801066 @@ -775688,6 +780249,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775734,6 +780296,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.20821 - 0.7986356 @@ -775795,6 +780358,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775841,6 +780405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.225663 - 0.80901706 @@ -775902,6 +780467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -775948,6 +780514,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.2431164 - 0.81915206 @@ -776009,6 +780576,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776055,6 +780623,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.2605696 - 0.8290375 @@ -776116,6 +780685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776162,6 +780732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.278023 - 0.83867043 @@ -776223,6 +780794,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776269,6 +780841,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.2954764 - 0.8480482 @@ -776330,6 +780903,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776376,6 +780950,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.3129296 - 0.85716736 @@ -776437,6 +781012,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776483,6 +781059,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.330383 - 0.8660254 @@ -776544,6 +781121,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776590,6 +781168,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.347836 - 0.87461966 @@ -776651,6 +781230,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776697,6 +781277,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.365289 - 0.8829475 @@ -776758,6 +781339,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776804,6 +781386,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.382743 - 0.8910066 @@ -776865,6 +781448,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -776911,6 +781495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.400196 - 0.89879405 @@ -776972,6 +781557,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777018,6 +781604,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.4176493 - 0.90630776 @@ -777079,6 +781666,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777125,6 +781713,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.4351025 - 0.91354537 @@ -777186,6 +781775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777232,6 +781822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.4525557 - 0.92050475 @@ -777293,6 +781884,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777339,6 +781931,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.4700093 - 0.9271839 @@ -777400,6 +781993,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777446,6 +782040,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.4874625 - 0.93358046 @@ -777507,6 +782102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777553,6 +782149,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.5049157 - 0.9396926 @@ -777614,6 +782211,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777660,6 +782258,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.522369 - 0.9455185 @@ -777721,6 +782320,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777767,6 +782367,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.539822 - 0.9510564 @@ -777828,6 +782429,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777874,6 +782476,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.557276 - 0.9563048 @@ -777935,6 +782538,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -777981,6 +782585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.574729 - 0.9612617 @@ -778042,6 +782647,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778088,6 +782694,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.592182 - 0.9659258 @@ -778149,6 +782756,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778195,6 +782803,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.6096354 - 0.97029567 @@ -778256,6 +782865,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778302,6 +782912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.6270885 - 0.97437 @@ -778363,6 +782974,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778409,6 +783021,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.644542 - 0.9781476 @@ -778470,6 +783083,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778516,6 +783130,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.6619954 - 0.98162717 @@ -778577,6 +783192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778623,6 +783239,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.6794486 - 0.9848077 @@ -778684,6 +783301,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778730,6 +783348,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.696902 - 0.9876883 @@ -778791,6 +783410,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778837,6 +783457,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.7143555 - 0.9902681 @@ -778898,6 +783519,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -778944,6 +783566,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.7318087 - 0.99254614 @@ -779005,6 +783628,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779051,6 +783675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.749262 - 0.9945219 @@ -779112,6 +783737,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779158,6 +783784,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.766715 - 0.99619466 @@ -779219,6 +783846,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779265,6 +783893,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.7841682 - 0.997564 @@ -779326,6 +783955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779372,6 +784002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.801622 - 0.99862957 @@ -779433,6 +784064,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779479,6 +784111,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.819075 - 0.99939084 @@ -779540,6 +784173,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779586,6 +784220,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.8365283 - 0.9998477 @@ -779647,6 +784282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779693,6 +784329,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.8539815 - 1 @@ -779754,6 +784391,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779800,6 +784438,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.8714347 - 0.9998477 @@ -779861,6 +784500,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -779907,6 +784547,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.8888884 - 0.99939084 @@ -779968,6 +784609,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780014,6 +784656,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.9063416 - 0.9986295 @@ -780075,6 +784718,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780121,6 +784765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.9237947 - 0.9975641 @@ -780182,6 +784827,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780228,6 +784874,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.941248 - 0.9961947 @@ -780289,6 +784936,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780335,6 +784983,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.958701 - 0.9945219 @@ -780396,6 +785045,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780442,6 +785092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.976155 - 0.99254614 @@ -780503,6 +785154,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780549,6 +785201,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7.993608 - 0.99026805 @@ -780610,6 +785263,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780656,6 +785310,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.011062 - 0.9876883 @@ -780717,6 +785372,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780763,6 +785419,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.028515 - 0.9848077 @@ -780824,6 +785481,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780870,6 +785528,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.045968 - 0.98162717 @@ -780931,6 +785590,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -780977,6 +785637,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.063421 - 0.97814757 @@ -781038,6 +785699,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781084,6 +785746,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.080874 - 0.97437006 @@ -781145,6 +785808,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781191,6 +785855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.098328 - 0.9702957 @@ -781252,6 +785917,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781298,6 +785964,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.115781 - 0.9659259 @@ -781359,6 +786026,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781405,6 +786073,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.133234 - 0.96126175 @@ -781466,6 +786135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781512,6 +786182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.150687 - 0.95630485 @@ -781573,6 +786244,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781619,6 +786291,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.16814 - 0.95105666 @@ -781680,6 +786353,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781726,6 +786400,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.185595 - 0.94551843 @@ -781787,6 +786462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781833,6 +786509,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.203048 - 0.93969256 @@ -781894,6 +786571,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -781940,6 +786618,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.220501 - 0.93358034 @@ -782001,6 +786680,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782047,6 +786727,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.237954 - 0.9271838 @@ -782108,6 +786789,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782154,6 +786836,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.255407 - 0.92050487 @@ -782215,6 +786898,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782261,6 +786945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.272861 - 0.9135455 @@ -782322,6 +787007,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782368,6 +787054,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.290314 - 0.9063079 @@ -782429,6 +787116,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782475,6 +787163,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.307767 - 0.8987942 @@ -782536,6 +787225,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782582,6 +787272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.32522 - 0.8910067 @@ -782643,6 +787334,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782689,6 +787381,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.342673 - 0.88294786 @@ -782750,6 +787443,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782796,6 +787490,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.360127 - 0.87461954 @@ -782857,6 +787552,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -782903,6 +787599,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.377581 - 0.86602527 @@ -782964,6 +787661,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783010,6 +787708,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.395034 - 0.85716724 @@ -783071,6 +787770,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783117,6 +787817,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.412487 - 0.8480481 @@ -783178,6 +787879,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783224,6 +787926,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.42994 - 0.8386706 @@ -783285,6 +787988,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783331,6 +788035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.447393 - 0.82903767 @@ -783392,6 +788097,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783438,6 +788144,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.464847 - 0.8191522 @@ -783499,6 +788206,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783545,6 +788253,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.4823 - 0.8090172 @@ -783606,6 +788315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783652,6 +788362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.499753 - 0.7986358 @@ -783713,6 +788424,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783759,6 +788471,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.517207 - 0.78801054 @@ -783820,6 +788533,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783866,6 +788580,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.53466 - 0.7771458 @@ -783927,6 +788642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -783973,6 +788689,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.552114 - 0.7660443 @@ -784034,6 +788751,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784080,6 +788798,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.569567 - 0.75470954 @@ -784141,6 +788860,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784187,6 +788907,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.58702 - 0.7431448 @@ -784248,6 +788969,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784294,6 +789016,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.604473 - 0.73135376 @@ -784355,6 +789078,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784401,6 +789125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.621926 - 0.71933997 @@ -784462,6 +789187,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784508,6 +789234,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.6393795 - 0.707107 @@ -784569,6 +789296,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784615,6 +789343,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.656833 - 0.69465864 @@ -784676,6 +789405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784722,6 +789452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.674286 - 0.6819987 @@ -784783,6 +789514,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784829,6 +789561,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.69174 - 0.6691303 @@ -784890,6 +789623,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -784936,6 +789670,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.709193 - 0.65605885 @@ -784997,6 +789732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785043,6 +789779,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.726646 - 0.64278746 @@ -785104,6 +789841,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785150,6 +789888,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.7441 - 0.6293203 @@ -785211,6 +789950,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785257,6 +789997,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.761553 - 0.6156615 @@ -785318,6 +790059,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785364,6 +790106,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.779006 - 0.6018151 @@ -785425,6 +790168,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785471,6 +790215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.796459 - 0.5877854 @@ -785532,6 +790277,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785578,6 +790324,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.813912 - 0.5735767 @@ -785639,6 +790386,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785685,6 +790433,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.831366 - 0.55919325 @@ -785746,6 +790495,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785792,6 +790542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.848819 - 0.54463947 @@ -785853,6 +790604,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -785899,6 +790651,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.866273 - 0.52991897 @@ -785960,6 +790713,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786006,6 +790760,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.883726 - 0.5150379 @@ -786067,6 +790822,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786113,6 +790869,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.901179 - 0.49999988 @@ -786174,6 +790931,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786220,6 +790978,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.9186325 - 0.4848096 @@ -786281,6 +791040,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786327,6 +791087,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.936086 - 0.46947163 @@ -786388,6 +791149,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786434,6 +791196,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.953539 - 0.45399064 @@ -786495,6 +791258,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786541,6 +791305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.970992 - 0.4383714 @@ -786602,6 +791367,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786648,6 +791414,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8.988445 - 0.4226186 @@ -786709,6 +791476,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786755,6 +791523,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.005898 - 0.40673706 @@ -786816,6 +791585,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786862,6 +791632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.023353 - 0.39073077 @@ -786923,6 +791694,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -786969,6 +791741,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.040806 - 0.3746063 @@ -787030,6 +791803,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787076,6 +791850,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.058259 - 0.35836777 @@ -787137,6 +791912,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787183,6 +791959,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.075712 - 0.34202006 @@ -787244,6 +792021,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787290,6 +792068,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.093165 - 0.32556817 @@ -787351,6 +792130,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787397,6 +792177,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.110619 - 0.3090171 @@ -787458,6 +792239,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787504,6 +792286,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.128072 - 0.2923719 @@ -787565,6 +792348,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787611,6 +792395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.145525 - 0.27563766 @@ -787672,6 +792457,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787718,6 +792504,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.162978 - 0.25881943 @@ -787779,6 +792566,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787825,6 +792613,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.180431 - 0.24192238 @@ -787886,6 +792675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -787932,6 +792722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.1978855 - 0.2249507 @@ -787993,6 +792784,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788039,6 +792831,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.215339 - 0.20791145 @@ -788100,6 +792893,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788146,6 +792940,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.232792 - 0.19080885 @@ -788207,6 +793002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788253,6 +793049,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.250245 - 0.17364812 @@ -788314,6 +793111,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788360,6 +793158,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.267698 - 0.1564345 @@ -788421,6 +793220,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788467,6 +793267,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.2851515 - 0.13917324 @@ -788528,6 +793329,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788574,6 +793376,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.302605 - 0.12186958 @@ -788635,6 +793438,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788681,6 +793485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.320058 - 0.1045288 @@ -788742,6 +793547,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788788,6 +793594,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.337511 - 0.08715618 @@ -788849,6 +793656,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -788895,6 +793703,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.354964 - 0.06975701 @@ -788956,6 +793765,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789002,6 +793812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.372418 - 0.052335635 @@ -789063,6 +793874,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789109,6 +793921,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.389872 - 0.034899276 @@ -789170,6 +793983,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789216,6 +794030,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.407325 - 0.017452283 @@ -789277,6 +794092,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789323,6 +794139,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.424778 - -0.000000023849761 @@ -789384,6 +794201,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789430,6 +794248,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.442231 - -0.017452331 @@ -789491,6 +794310,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789537,6 +794357,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.459684 - -0.034899324 @@ -789598,6 +794419,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789644,6 +794466,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.477138 - -0.052335683 @@ -789705,6 +794528,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789751,6 +794575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.494591 - -0.069756106 @@ -789812,6 +794637,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789858,6 +794684,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.512044 - -0.087155275 @@ -789919,6 +794746,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -789965,6 +794793,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.529498 - -0.104528844 @@ -790026,6 +794855,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790072,6 +794902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.546951 - -0.12186962 @@ -790133,6 +794964,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790179,6 +795011,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.5644045 - -0.13917328 @@ -790240,6 +795073,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790286,6 +795120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.581858 - -0.15643455 @@ -790347,6 +795182,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790393,6 +795229,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.599311 - -0.17364816 @@ -790454,6 +795291,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790500,6 +795338,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.616764 - -0.19080889 @@ -790561,6 +795400,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790607,6 +795447,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.634217 - -0.20791149 @@ -790668,6 +795509,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790714,6 +795556,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.65167 - -0.22495076 @@ -790775,6 +795618,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790821,6 +795665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.669124 - -0.2419215 @@ -790882,6 +795727,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -790928,6 +795774,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.686577 - -0.25881857 @@ -790989,6 +795836,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791035,6 +795883,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.704031 - -0.2756377 @@ -791096,6 +795945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791142,6 +795992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.721484 - -0.29237196 @@ -791203,6 +796054,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791249,6 +796101,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.738937 - -0.30901715 @@ -791310,6 +796163,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791356,6 +796210,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.756391 - -0.3255682 @@ -791417,6 +796272,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791463,6 +796319,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.773844 - -0.3420201 @@ -791524,6 +796381,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791570,6 +796428,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.791297 - -0.3583678 @@ -791631,6 +796490,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791677,6 +796537,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.80875 - -0.37460637 @@ -791738,6 +796599,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791784,6 +796646,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.826203 - -0.39073083 @@ -791845,6 +796708,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791891,6 +796755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.843657 - -0.40673625 @@ -791952,6 +796817,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -791998,6 +796864,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.86111 - -0.42261776 @@ -792059,6 +796926,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792105,6 +796973,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.878564 - -0.43837142 @@ -792166,6 +797035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792212,6 +797082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.896017 - -0.4539907 @@ -792273,6 +797144,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792319,6 +797191,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.91347 - -0.46947166 @@ -792380,6 +797253,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792426,6 +797300,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.930923 - -0.48480964 @@ -792487,6 +797362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792533,6 +797409,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.948377 - -0.49999994 @@ -792594,6 +797471,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792640,6 +797518,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.96583 - -0.5150379 @@ -792701,6 +797580,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792747,6 +797627,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9.983283 - -0.529919 @@ -792808,6 +797689,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792854,6 +797736,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.000736 - -0.5446387 @@ -792915,6 +797798,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -792961,6 +797845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.018189 - -0.55919254 @@ -793022,6 +797907,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793068,6 +797954,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.035644 - -0.57357675 @@ -793129,6 +798016,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793175,6 +798063,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.053097 - -0.5877855 @@ -793236,6 +798125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793282,6 +798172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.07055 - -0.60181516 @@ -793343,6 +798234,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793389,6 +798281,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.088003 - -0.61566156 @@ -793450,6 +798343,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793496,6 +798390,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.105456 - -0.6293204 @@ -793557,6 +798452,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793603,6 +798499,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.12291 - -0.6427875 @@ -793664,6 +798561,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793710,6 +798608,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.140363 - -0.65605885 @@ -793771,6 +798670,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793817,6 +798717,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.157816 - -0.6691304 @@ -793878,6 +798779,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -793924,6 +798826,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.175269 - -0.6819981 @@ -793985,6 +798888,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794031,6 +798935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.192722 - -0.694658 @@ -794092,6 +798997,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794138,6 +799044,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.210176 - -0.707107 @@ -794199,6 +799106,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794245,6 +799153,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.22763 - -0.71933997 @@ -794306,6 +799215,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794352,6 +799262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.245083 - -0.7313538 @@ -794413,6 +799324,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794459,6 +799371,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.262536 - -0.74314487 @@ -794520,6 +799433,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794566,6 +799480,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.279989 - -0.75470954 @@ -794627,6 +799542,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794673,6 +799589,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.297442 - -0.7660443 @@ -794734,6 +799651,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794780,6 +799698,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.314896 - -0.7771458 @@ -794841,6 +799760,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794887,6 +799807,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.332349 - -0.78801054 @@ -794948,6 +799869,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -794994,6 +799916,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.349802 - -0.79863524 @@ -795055,6 +799978,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795101,6 +800025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.367255 - -0.80901664 @@ -795162,6 +800087,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795208,6 +800134,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.384709 - -0.81915224 @@ -795269,6 +800196,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795315,6 +800243,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.402163 - -0.82903767 @@ -795376,6 +800305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795422,6 +800352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.419616 - -0.8386706 @@ -795483,6 +800414,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795529,6 +800461,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.437069 - -0.8480481 @@ -795590,6 +800523,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795636,6 +800570,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.454522 - -0.85716724 @@ -795697,6 +800632,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795743,6 +800679,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.471975 - -0.8660253 @@ -795804,6 +800741,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795850,6 +800788,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.4894285 - -0.87461954 @@ -795911,6 +800850,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -795957,6 +800897,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.506882 - -0.8829474 @@ -796018,6 +800959,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796064,6 +801006,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.524335 - -0.8910063 @@ -796125,6 +801068,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796171,6 +801115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.541789 - -0.89879423 @@ -796232,6 +801177,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796278,6 +801224,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.559242 - -0.9063079 @@ -796339,6 +801286,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796385,6 +801333,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.576695 - -0.91354555 @@ -796446,6 +801395,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796492,6 +801442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.594149 - -0.92050487 @@ -796553,6 +801504,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796599,6 +801551,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.611602 - -0.92718387 @@ -796660,6 +801613,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796706,6 +801660,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.629055 - -0.9335804 @@ -796767,6 +801722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796813,6 +801769,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.646508 - -0.93969256 @@ -796874,6 +801831,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -796920,6 +801878,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.663961 - -0.9455185 @@ -796981,6 +801940,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797027,6 +801987,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.681415 - -0.95105636 @@ -797088,6 +802049,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797134,6 +802096,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.698868 - -0.9563046 @@ -797195,6 +802158,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797241,6 +802205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.716322 - -0.9612618 @@ -797302,6 +802267,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797348,6 +802314,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.733775 - -0.9659259 @@ -797409,6 +802376,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797455,6 +802423,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.751228 - -0.9702958 @@ -797516,6 +802485,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797562,6 +802532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.768682 - -0.97437006 @@ -797623,6 +802594,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797669,6 +802641,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.786135 - -0.97814757 @@ -797730,6 +802703,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797776,6 +802750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.803588 - -0.98162717 @@ -797837,6 +802812,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797883,6 +802859,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.821041 - -0.9848077 @@ -797944,6 +802921,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -797990,6 +802968,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.838494 - -0.9876883 @@ -798051,6 +803030,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798097,6 +803077,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.8559475 - -0.990268 @@ -798158,6 +803139,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798204,6 +803186,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.873401 - -0.9925461 @@ -798265,6 +803248,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798311,6 +803295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.890855 - -0.9945219 @@ -798372,6 +803357,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798418,6 +803404,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.908308 - -0.9961947 @@ -798479,6 +803466,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798525,6 +803513,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.925761 - -0.9975641 @@ -798586,6 +803575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798632,6 +803622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.943214 - -0.9986295 @@ -798693,6 +803684,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798739,6 +803731,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.960668 - -0.99939084 @@ -798800,6 +803793,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798846,6 +803840,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.978121 - -0.9998477 @@ -798907,6 +803902,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -798953,6 +803949,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10.995574 - -1 @@ -799014,6 +804011,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799060,6 +804058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.013027 - -0.9998477 @@ -799121,6 +804120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799167,6 +804167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.03048 - -0.99939084 @@ -799228,6 +804229,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799274,6 +804276,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.047935 - -0.9986295 @@ -799335,6 +804338,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799381,6 +804385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.065388 - -0.997564 @@ -799442,6 +804447,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799488,6 +804494,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.082841 - -0.99619466 @@ -799549,6 +804556,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799595,6 +804603,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.100294 - -0.9945219 @@ -799656,6 +804665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799702,6 +804712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.117747 - -0.99254614 @@ -799763,6 +804774,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799809,6 +804821,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.1352005 - -0.9902681 @@ -799870,6 +804883,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -799916,6 +804930,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.152654 - -0.98768836 @@ -799977,6 +804992,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800023,6 +805039,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.170107 - -0.9848078 @@ -800084,6 +805101,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800130,6 +805148,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.18756 - -0.9816273 @@ -800191,6 +805210,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800237,6 +805257,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.205013 - -0.9781477 @@ -800298,6 +805319,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800344,6 +805366,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.222467 - -0.97437 @@ -800405,6 +805428,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800451,6 +805475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.239921 - -0.97029567 @@ -800512,6 +805537,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800558,6 +805584,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.257374 - -0.9659258 @@ -800619,6 +805646,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800665,6 +805693,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.274827 - -0.9612617 @@ -800726,6 +805755,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800772,6 +805802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.29228 - -0.9563048 @@ -800833,6 +805864,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800879,6 +805911,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.309733 - -0.95105654 @@ -800940,6 +805973,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -800986,6 +806020,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.327187 - -0.9455187 @@ -801047,6 +806082,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801093,6 +806129,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.34464 - -0.93969274 @@ -801154,6 +806191,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801200,6 +806238,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.362093 - -0.9335806 @@ -801261,6 +806300,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801307,6 +806347,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.379546 - -0.92718405 @@ -801368,6 +806409,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801414,6 +806456,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.397 - -0.92050475 @@ -801475,6 +806518,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801521,6 +806565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.4144535 - -0.91354537 @@ -801582,6 +806627,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801628,6 +806674,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.431907 - -0.90630776 @@ -801689,6 +806736,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801735,6 +806783,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.44936 - -0.89879405 @@ -801796,6 +806845,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801842,6 +806892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.466813 - -0.8910066 @@ -801903,6 +806954,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -801949,6 +807001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.484266 - -0.8829477 @@ -802010,6 +807063,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802056,6 +807110,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.501719 - -0.87461984 @@ -802117,6 +807172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802163,6 +807219,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.519173 - -0.8660256 @@ -802224,6 +807281,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802270,6 +807328,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.536626 - -0.85716754 @@ -802331,6 +807390,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802377,6 +807437,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.55408 - -0.8480479 @@ -802438,6 +807499,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802484,6 +807546,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.571533 - -0.83867043 @@ -802545,6 +807608,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802591,6 +807655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.588986 - -0.8290375 @@ -802652,6 +807717,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802698,6 +807764,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.60644 - -0.819152 @@ -802759,6 +807826,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802805,6 +807873,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.623893 - -0.809017 @@ -802866,6 +807935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -802912,6 +807982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.641346 - -0.7986356 @@ -802973,6 +808044,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803019,6 +808091,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.658799 - -0.7880109 @@ -803080,6 +808153,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803126,6 +808200,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.676252 - -0.77714616 @@ -803187,6 +808262,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803233,6 +808309,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.693706 - -0.76604474 @@ -803294,6 +808371,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803340,6 +808418,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.711159 - -0.7547099 @@ -803401,6 +808480,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803447,6 +808527,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.728613 - -0.74314463 @@ -803508,6 +808589,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803554,6 +808636,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.746066 - -0.7313535 @@ -803615,6 +808698,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803661,6 +808745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.763519 - -0.7193397 @@ -803722,6 +808807,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803768,6 +808854,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.7809725 - -0.70710677 @@ -803829,6 +808916,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803875,6 +808963,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.798426 - -0.6946584 @@ -803936,6 +809025,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -803982,6 +809072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.815879 - -0.6819985 @@ -804043,6 +809134,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804089,6 +809181,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.833332 - -0.6691308 @@ -804150,6 +809243,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804196,6 +809290,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.850785 - -0.6560593 @@ -804257,6 +809352,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804303,6 +809399,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.868238 - -0.642788 @@ -804364,6 +809461,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804410,6 +809508,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.885692 - -0.6293208 @@ -804471,6 +809570,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804517,6 +809617,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.903146 - -0.61566126 @@ -804578,6 +809679,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804624,6 +809726,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.920599 - -0.60181487 @@ -804685,6 +809788,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804731,6 +809835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.938052 - -0.5877852 @@ -804792,6 +809897,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804838,6 +809944,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.955505 - -0.57357645 @@ -804899,6 +810006,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -804945,6 +810053,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.972959 - -0.559193 @@ -805006,6 +810115,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805052,6 +810162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11.990412 - -0.5446392 @@ -805113,6 +810224,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805159,6 +810271,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.007865 - -0.5299195 @@ -805220,6 +810333,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805266,6 +810380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.025318 - -0.51503843 @@ -805327,6 +810442,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805373,6 +810489,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.042771 - -0.5000004 @@ -805434,6 +810551,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805480,6 +810598,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.0602255 - -0.4848093 @@ -805541,6 +810660,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805587,6 +810707,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.077679 - -0.46947134 @@ -805648,6 +810769,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805694,6 +810816,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.095132 - -0.45399037 @@ -805755,6 +810878,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805801,6 +810925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.112585 - -0.4383711 @@ -805862,6 +810987,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -805908,6 +811034,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.130038 - -0.4226183 @@ -805969,6 +811096,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806015,6 +811143,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.147491 - -0.40673676 @@ -806076,6 +811205,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806122,6 +811252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.164945 - -0.39073133 @@ -806183,6 +811314,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806229,6 +811361,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.182398 - -0.3746069 @@ -806290,6 +811423,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806336,6 +811470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.199851 - -0.35836837 @@ -806397,6 +811532,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806443,6 +811579,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.217304 - -0.34202063 @@ -806504,6 +811641,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806550,6 +811688,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.234758 - -0.32556784 @@ -806611,6 +811750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806657,6 +811797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.252212 - -0.3090168 @@ -806718,6 +811859,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806764,6 +811906,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.269665 - -0.2923716 @@ -806825,6 +811968,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806871,6 +812015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.287118 - -0.27563733 @@ -806932,6 +812077,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -806978,6 +812124,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.304571 - -0.2588191 @@ -807039,6 +812186,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807085,6 +812233,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.322024 - -0.24192207 @@ -807146,6 +812295,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807192,6 +812342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.339478 - -0.22495133 @@ -807253,6 +812404,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807299,6 +812451,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.356931 - -0.20791206 @@ -807360,6 +812513,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807406,6 +812560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.374384 - -0.19080946 @@ -807467,6 +812622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807513,6 +812669,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.391837 - -0.17364874 @@ -807574,6 +812731,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807620,6 +812778,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.409291 - -0.15643418 @@ -807681,6 +812840,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807727,6 +812887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.426744 - -0.13917291 @@ -807788,6 +812949,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807834,6 +812996,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.444198 - -0.12186926 @@ -807895,6 +813058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -807941,6 +813105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.461651 - -0.10452847 @@ -808002,6 +813167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808048,6 +813214,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.479104 - -0.08715585 @@ -808109,6 +813276,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808155,6 +813323,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.496557 - -0.06975668 @@ -808216,6 +813385,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808262,6 +813432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.51401 - -0.052336264 @@ -808323,6 +813494,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808369,6 +813541,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.531464 - -0.0348999 @@ -808430,6 +813603,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808476,6 +813650,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.548917 - -0.017452912 @@ -808537,6 +813712,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808583,6 +813759,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.566371 - 0.0000003496911 @@ -808644,6 +813821,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808690,6 +813868,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.583824 - 0.017452657 @@ -808751,6 +813930,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808797,6 +813977,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.601277 - 0.03489965 @@ -808858,6 +814039,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -808904,6 +814086,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.618731 - 0.05233601 @@ -808965,6 +814148,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809011,6 +814195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.636184 - 0.069756426 @@ -809072,6 +814257,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809118,6 +814304,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.653637 - 0.087155595 @@ -809179,6 +814366,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809225,6 +814413,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.67109 - 0.10452822 @@ -809286,6 +814475,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809332,6 +814522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.688543 - 0.121869005 @@ -809393,6 +814584,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809439,6 +814631,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.7059965 - 0.13917266 @@ -809500,6 +814693,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809546,6 +814740,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.72345 - 0.15643393 @@ -809607,6 +814802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809653,6 +814849,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.740904 - 0.17364849 @@ -809714,6 +814911,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809760,6 +814958,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.758357 - 0.1908092 @@ -809821,6 +815020,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809867,6 +815067,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.77581 - 0.2079118 @@ -809928,6 +815129,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -809974,6 +815176,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.793263 - 0.22495107 @@ -810035,6 +815238,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810081,6 +815285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.810717 - 0.24192181 @@ -810142,6 +815347,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810188,6 +815394,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.82817 - 0.25881886 @@ -810249,6 +815456,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810295,6 +815503,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.845623 - 0.2756371 @@ -810356,6 +815565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810402,6 +815612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.863076 - 0.29237133 @@ -810463,6 +815674,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810509,6 +815721,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.880529 - 0.30901656 @@ -810570,6 +815783,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810616,6 +815830,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.897983 - 0.3255676 @@ -810677,6 +815892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810723,6 +815939,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.915437 - 0.3420204 @@ -810784,6 +816001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810830,6 +816048,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.93289 - 0.35836813 @@ -810891,6 +816110,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -810937,6 +816157,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.950343 - 0.37460667 @@ -810998,6 +816219,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811044,6 +816266,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.967796 - 0.39073113 @@ -811105,6 +816328,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811151,6 +816375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12.9852495 - 0.40673652 @@ -811212,6 +816437,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811258,6 +816484,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.002703 - 0.42261806 @@ -811319,6 +816546,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811365,6 +816593,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.020156 - 0.43837085 @@ -811426,6 +816655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811472,6 +816702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.037609 - 0.45399013 @@ -811533,6 +816764,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811579,6 +816811,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.055062 - 0.4694711 @@ -811640,6 +816873,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811686,6 +816920,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.072516 - 0.48480994 @@ -811747,6 +816982,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811793,6 +817029,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.08997 - 0.50000024 @@ -811854,6 +817091,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -811900,6 +817138,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.107423 - 0.5150382 @@ -811961,6 +817200,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812007,6 +817247,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.124876 - 0.5299193 @@ -812068,6 +817309,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812114,6 +817356,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.142329 - 0.544639 @@ -812175,6 +817418,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812221,6 +817465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.159782 - 0.5591928 @@ -812282,6 +817527,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812328,6 +817574,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.177236 - 0.5735762 @@ -812389,6 +817636,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812435,6 +817683,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.194689 - 0.58778495 @@ -812496,6 +817745,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812542,6 +817792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.212142 - 0.6018147 @@ -812603,6 +817854,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812649,6 +817901,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.229595 - 0.615661 @@ -812710,6 +817963,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812756,6 +818010,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.247049 - 0.6293206 @@ -812817,6 +818072,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812863,6 +818119,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.264503 - 0.64278775 @@ -812924,6 +818181,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -812970,6 +818228,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.281956 - 0.6560591 @@ -813031,6 +818290,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813077,6 +818337,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.299409 - 0.6691306 @@ -813138,6 +818399,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813184,6 +818446,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.316862 - 0.6819983 @@ -813245,6 +818508,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813291,6 +818555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.334315 - 0.6946582 @@ -813352,6 +818617,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813398,6 +818664,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.3517685 - 0.7071066 @@ -813459,6 +818726,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813505,6 +818773,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.369222 - 0.71933955 @@ -813566,6 +818835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813612,6 +818882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.386675 - 0.7313534 @@ -813673,6 +818944,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813719,6 +818991,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.404129 - 0.74314505 @@ -813780,6 +819053,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813826,6 +819100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.421582 - 0.7547098 @@ -813887,6 +819162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -813933,6 +819209,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.439035 - 0.76604456 @@ -813994,6 +819271,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814040,6 +819318,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.456489 - 0.777146 @@ -814101,6 +819380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814147,6 +819427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.473942 - 0.7880107 @@ -814208,6 +819489,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814254,6 +819536,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.491395 - 0.7986354 @@ -814315,6 +819598,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814361,6 +819645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.508848 - 0.8090169 @@ -814422,6 +819707,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814468,6 +819754,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.526301 - 0.8191519 @@ -814529,6 +819816,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814575,6 +819863,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.543755 - 0.82903737 @@ -814636,6 +819925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814682,6 +819972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.561208 - 0.8386703 @@ -814743,6 +820034,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814789,6 +820081,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.578662 - 0.84804827 @@ -814850,6 +820143,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -814896,6 +820190,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.596115 - 0.8571674 @@ -814957,6 +820252,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815003,6 +820299,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.613568 - 0.86602545 @@ -815064,6 +820361,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815110,6 +820408,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.6310215 - 0.8746197 @@ -815171,6 +820470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815217,6 +820517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.648475 - 0.88294756 @@ -815278,6 +820579,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815324,6 +820626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.665928 - 0.89100647 @@ -815385,6 +820688,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815431,6 +820735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.683381 - 0.89879394 @@ -815492,6 +820797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815538,6 +820844,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.700834 - 0.90630764 @@ -815599,6 +820906,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815645,6 +820953,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.718287 - 0.91354525 @@ -815706,6 +821015,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815752,6 +821062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.735741 - 0.9205046 @@ -815813,6 +821124,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815859,6 +821171,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.753195 - 0.927184 @@ -815920,6 +821233,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -815966,6 +821280,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.770648 - 0.9335805 @@ -816027,6 +821342,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816073,6 +821389,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.788101 - 0.9396927 @@ -816134,6 +821451,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816180,6 +821498,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.805554 - 0.94551855 @@ -816241,6 +821560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816287,6 +821607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.823008 - 0.9510565 @@ -816348,6 +821669,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816394,6 +821716,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.840461 - 0.9563047 @@ -816455,6 +821778,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816501,6 +821825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.857914 - 0.96126163 @@ -816562,6 +821887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816608,6 +821934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.875367 - 0.96592575 @@ -816669,6 +821996,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816715,6 +822043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.89282 - 0.9702956 @@ -816776,6 +822105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816822,6 +822152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.9102745 - 0.9743701 @@ -816883,6 +822214,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -816929,6 +822261,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.927728 - 0.9781477 @@ -816990,6 +822323,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817036,6 +822370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.945181 - 0.9816272 @@ -817097,6 +822432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817143,6 +822479,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.962634 - 0.9848078 @@ -817204,6 +822541,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817250,6 +822588,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.980087 - 0.98768836 @@ -817311,6 +822650,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817357,6 +822697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13.99754 - 0.99026805 @@ -817418,6 +822759,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817464,6 +822806,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.014994 - 0.99254614 @@ -817525,6 +822868,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817571,6 +822915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.032447 - 0.99452186 @@ -817632,6 +822977,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817678,6 +823024,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.0499 - 0.99619466 @@ -817739,6 +823086,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817785,6 +823133,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.067353 - 0.997564 @@ -817846,6 +823195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817892,6 +823242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.084807 - 0.99862957 @@ -817953,6 +823304,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -817999,6 +823351,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.102261 - 0.99939084 @@ -818060,6 +823413,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818106,6 +823460,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.119714 - 0.9998477 @@ -818167,6 +823522,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818213,6 +823569,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.137167 - 1 @@ -818274,6 +823631,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818320,6 +823678,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.15462 - 0.9998477 @@ -818381,6 +823740,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818427,6 +823787,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.172073 - 0.99939084 @@ -818488,6 +823849,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818534,6 +823896,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.189527 - 0.99862957 @@ -818595,6 +823958,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818641,6 +824005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.20698 - 0.9975641 @@ -818702,6 +824067,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818748,6 +824114,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.224433 - 0.9961947 @@ -818809,6 +824176,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818855,6 +824223,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.241886 - 0.994522 @@ -818916,6 +824285,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -818962,6 +824332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.25934 - 0.99254614 @@ -819023,6 +824394,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819069,6 +824441,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.2767935 - 0.99026805 @@ -819130,6 +824503,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819176,6 +824550,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.294247 - 0.9876883 @@ -819237,6 +824612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819283,6 +824659,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.3117 - 0.9848077 @@ -819344,6 +824721,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819390,6 +824768,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.329153 - 0.9816272 @@ -819451,6 +824830,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819497,6 +824877,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.346606 - 0.9781476 @@ -819558,6 +824939,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819604,6 +824986,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.364059 - 0.9743701 @@ -819665,6 +825048,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819711,6 +825095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.381513 - 0.97029585 @@ -819772,6 +825157,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819818,6 +825204,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.398966 - 0.96592593 @@ -819879,6 +825266,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -819925,6 +825313,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.41642 - 0.9612616 @@ -819986,6 +825375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820032,6 +825422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.433873 - 0.95630467 @@ -820093,6 +825484,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820139,6 +825531,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.451326 - 0.9510565 @@ -820200,6 +825593,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820246,6 +825640,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.46878 - 0.94551855 @@ -820307,6 +825702,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820353,6 +825749,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.486233 - 0.9396926 @@ -820414,6 +825811,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820460,6 +825858,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.503686 - 0.93358046 @@ -820521,6 +825920,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820567,6 +825967,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.521139 - 0.9271839 @@ -820628,6 +826029,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820674,6 +826076,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.538592 - 0.920505 @@ -820735,6 +826138,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820781,6 +826185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.556046 - 0.9135456 @@ -820842,6 +826247,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820888,6 +826294,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.573499 - 0.906308 @@ -820949,6 +826356,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -820995,6 +826403,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.590953 - 0.8987939 @@ -821056,6 +826465,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821102,6 +826512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.608406 - 0.8910064 @@ -821163,6 +826574,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821209,6 +826621,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.625859 - 0.8829475 @@ -821270,6 +826683,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821316,6 +826730,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.643312 - 0.8746197 @@ -821377,6 +826792,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821423,6 +826839,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.660766 - 0.86602545 @@ -821484,6 +826901,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821530,6 +826948,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.678219 - 0.85716736 @@ -821591,6 +827010,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821637,6 +827057,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.695672 - 0.8480482 @@ -821698,6 +827119,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821744,6 +827166,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.713125 - 0.8386708 @@ -821805,6 +827228,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821851,6 +827275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.730578 - 0.82903785 @@ -821912,6 +827337,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -821958,6 +827384,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.748032 - 0.81915236 @@ -822019,6 +827446,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822065,6 +827493,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.765486 - 0.8090168 @@ -822126,6 +827555,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822172,6 +827602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.782939 - 0.7986354 @@ -822233,6 +827664,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822279,6 +827711,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.800392 - 0.7880107 @@ -822340,6 +827773,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822386,6 +827820,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.817845 - 0.777146 @@ -822447,6 +827882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822493,6 +827929,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.835299 - 0.7660445 @@ -822554,6 +827991,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822600,6 +828038,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.852752 - 0.7547097 @@ -822661,6 +828100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822707,6 +828147,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.870205 - 0.74314505 @@ -822768,6 +828209,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822814,6 +828256,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.887658 - 0.731354 @@ -822875,6 +828318,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -822921,6 +828365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.905111 - 0.71934015 @@ -822982,6 +828427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823028,6 +828474,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.922565 - 0.70710653 @@ -823089,6 +828536,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823135,6 +828583,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.940019 - 0.69465816 @@ -823196,6 +828645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823242,6 +828692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.957472 - 0.68199825 @@ -823303,6 +828754,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823349,6 +828801,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.974925 - 0.66913056 @@ -823410,6 +828863,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823456,6 +828910,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14.992378 - 0.6560591 @@ -823517,6 +828972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823563,6 +829019,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.009831 - 0.6427877 @@ -823624,6 +829081,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823670,6 +829128,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.027285 - 0.62932056 @@ -823731,6 +829190,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823777,6 +829237,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.044738 - 0.61566174 @@ -823838,6 +829299,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823884,6 +829346,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.062191 - 0.60181534 @@ -823945,6 +829408,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -823991,6 +829455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.079644 - 0.58778566 @@ -824052,6 +829517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824098,6 +829564,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.097098 - 0.57357615 @@ -824159,6 +829626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824205,6 +829673,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.114552 - 0.5591927 @@ -824266,6 +829735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824312,6 +829782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.132005 - 0.54463893 @@ -824373,6 +829844,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824419,6 +829891,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.149458 - 0.52991927 @@ -824480,6 +829953,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824526,6 +830000,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.166911 - 0.51503813 @@ -824587,6 +830062,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824633,6 +830109,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.184364 - 0.5000002 @@ -824694,6 +830171,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824740,6 +830218,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.2018175 - 0.48480985 @@ -824801,6 +830280,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824847,6 +830327,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.219271 - 0.4694719 @@ -824908,6 +830389,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -824954,6 +830436,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.236724 - 0.4539909 @@ -825015,6 +830498,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825061,6 +830545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.254177 - 0.43837166 @@ -825122,6 +830607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825168,6 +830654,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.271631 - 0.422618 @@ -825229,6 +830716,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825275,6 +830763,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.289084 - 0.40673646 @@ -825336,6 +830825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825382,6 +830872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.306538 - 0.39073104 @@ -825443,6 +830934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825489,6 +830981,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.323991 - 0.3746066 @@ -825550,6 +831043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825596,6 +831090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.341444 - 0.35836804 @@ -825657,6 +831152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825703,6 +831199,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.358897 - 0.34202033 @@ -825764,6 +831261,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825810,6 +831308,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.37635 - 0.32556844 @@ -825871,6 +831370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -825917,6 +831417,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.393804 - 0.3090174 @@ -825978,6 +831479,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826024,6 +831526,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.411257 - 0.2923722 @@ -826085,6 +831588,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826131,6 +831635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.428711 - 0.27563703 @@ -826192,6 +831697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826238,6 +831744,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.446164 - 0.2588188 @@ -826299,6 +831806,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826345,6 +831853,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.463617 - 0.24192175 @@ -826406,6 +831915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826452,6 +831962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.4810705 - 0.224951 @@ -826513,6 +832024,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826559,6 +832071,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.498524 - 0.20791173 @@ -826620,6 +832133,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826666,6 +832180,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.515977 - 0.19080913 @@ -826727,6 +832242,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826773,6 +832289,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.53343 - 0.17364842 @@ -826834,6 +832351,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826880,6 +832398,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.550883 - 0.1564348 @@ -826941,6 +832460,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -826987,6 +832507,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.5683365 - 0.13917354 @@ -827048,6 +832569,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827094,6 +832616,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.58579 - 0.12186988 @@ -827155,6 +832678,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827201,6 +832725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.603244 - 0.10452815 @@ -827262,6 +832787,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827308,6 +832834,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.620697 - 0.08715553 @@ -827369,6 +832896,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827415,6 +832943,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.63815 - 0.06975636 @@ -827476,6 +833005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827522,6 +833052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.655603 - 0.052335937 @@ -827583,6 +833114,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827629,6 +833161,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.673057 - 0.034899577 @@ -827690,6 +833223,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827736,6 +833270,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.69051 - 0.017452586 @@ -827797,6 +833332,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827843,6 +833379,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.707963 - 0.00000027814184 @@ -827904,6 +833441,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -827950,6 +833488,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.725416 - -0.01745203 @@ -828011,6 +833550,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828057,6 +833597,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.742869 - -0.034899022 @@ -828118,6 +833659,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828164,6 +833706,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.760323 - -0.05233538 @@ -828225,6 +833768,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828271,6 +833815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.777777 - -0.069756754 @@ -828332,6 +833877,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828378,6 +833924,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.79523 - -0.08715592 @@ -828439,6 +833986,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828485,6 +834033,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.812683 - -0.10452855 @@ -828546,6 +834095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828592,6 +834142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.830136 - -0.121869326 @@ -828653,6 +834204,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828699,6 +834251,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.8475895 - -0.13917299 @@ -828760,6 +834313,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828806,6 +834360,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.865043 - -0.15643425 @@ -828867,6 +834422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -828913,6 +834469,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.882496 - -0.17364787 @@ -828974,6 +834531,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829020,6 +834578,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.899949 - -0.1908086 @@ -829081,6 +834640,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829127,6 +834687,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.917402 - -0.2079112 @@ -829188,6 +834749,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829234,6 +834796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.934856 - -0.22495139 @@ -829295,6 +834858,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829341,6 +834905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.95231 - -0.24192214 @@ -829402,6 +834967,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829448,6 +835014,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.969763 - -0.2588192 @@ -829509,6 +835076,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829555,6 +835123,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15.987216 - -0.2756374 @@ -829616,6 +835185,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829662,6 +835232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.00467 - -0.29237166 @@ -829723,6 +835294,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829769,6 +835341,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.022123 - -0.30901775 @@ -829830,6 +835403,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829876,6 +835450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.039576 - -0.32556793 @@ -829937,6 +835512,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -829983,6 +835559,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.05703 - -0.34202072 @@ -830044,6 +835621,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830090,6 +835668,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.074482 - -0.35836753 @@ -830151,6 +835730,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830197,6 +835777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.091936 - -0.37460697 @@ -830258,6 +835839,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830304,6 +835886,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.109388 - -0.39073053 @@ -830365,6 +835948,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830411,6 +835995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.126842 - -0.40673682 @@ -830472,6 +836057,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830518,6 +836104,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.144295 - -0.4226175 @@ -830579,6 +836166,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830625,6 +836213,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.161749 - -0.43837115 @@ -830686,6 +836275,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830732,6 +836322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.179201 - -0.45398957 @@ -830793,6 +836384,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830839,6 +836431,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.196655 - -0.4694714 @@ -830900,6 +836493,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -830946,6 +836540,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.21411 - -0.4848102 @@ -831007,6 +836602,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831053,6 +836649,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.231562 - -0.49999967 @@ -831114,6 +836711,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831160,6 +836758,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.249016 - -0.5150385 @@ -831221,6 +836820,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831267,6 +836867,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.266468 - -0.5299188 @@ -831328,6 +836929,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831374,6 +836976,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.283922 - -0.5446393 @@ -831435,6 +837038,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831481,6 +837085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.301374 - -0.55919224 @@ -831542,6 +837147,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831588,6 +837194,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.318829 - -0.5735765 @@ -831649,6 +837256,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831695,6 +837303,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.33628 - -0.58778447 @@ -831756,6 +837365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831802,6 +837412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.353735 - -0.6018149 @@ -831863,6 +837474,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -831909,6 +837521,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.37119 - -0.61566204 @@ -831970,6 +837583,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832016,6 +837630,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.388641 - -0.62932014 @@ -832077,6 +837692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832123,6 +837739,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.406096 - -0.642788 @@ -832184,6 +837801,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832230,6 +837848,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.423548 - -0.6560586 @@ -832291,6 +837910,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832337,6 +837957,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.441002 - -0.66913086 @@ -832398,6 +838019,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832444,6 +838066,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.458454 - -0.68199784 @@ -832505,6 +838128,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832551,6 +838175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.475908 - -0.69465846 @@ -832612,6 +838237,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832658,6 +838284,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.49336 - -0.7071061 @@ -832719,6 +838346,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832765,6 +838393,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.510815 - -0.7193398 @@ -832826,6 +838455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832872,6 +838502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.528269 - -0.73135424 @@ -832933,6 +838564,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -832979,6 +838611,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.545721 - -0.74314463 @@ -833040,6 +838673,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833086,6 +838720,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.563175 - -0.75470996 @@ -833147,6 +838782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833193,6 +838829,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.580627 - -0.76604414 @@ -833254,6 +838891,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833300,6 +838938,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.598082 - -0.7771462 @@ -833361,6 +839000,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833407,6 +839047,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.615534 - -0.78801036 @@ -833468,6 +839109,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833514,6 +839156,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.632988 - -0.79863566 @@ -833575,6 +839218,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833621,6 +839265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.65044 - -0.8090165 @@ -833682,6 +839327,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833728,6 +839374,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.667894 - -0.81915206 @@ -833789,6 +839436,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833835,6 +839483,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.685347 - -0.829037 @@ -833896,6 +839545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -833942,6 +839592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.7028 - -0.8386705 @@ -834003,6 +839654,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834049,6 +839701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.720255 - -0.84804845 @@ -834110,6 +839763,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834156,6 +839810,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.737707 - -0.8571671 @@ -834217,6 +839872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834263,6 +839919,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.755161 - -0.8660256 @@ -834324,6 +839981,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834370,6 +840028,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.772614 - -0.8746194 @@ -834431,6 +840090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834477,6 +840137,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.790068 - -0.88294774 @@ -834538,6 +840199,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834584,6 +840246,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.80752 - -0.8910062 @@ -834645,6 +840308,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834691,6 +840355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.824974 - -0.89879405 @@ -834752,6 +840417,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834798,6 +840464,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.842426 - -0.9063074 @@ -834859,6 +840526,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -834905,6 +840573,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.85988 - -0.9135454 @@ -834966,6 +840635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835012,6 +840682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.877335 - -0.92050517 @@ -835073,6 +840744,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835119,6 +840791,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.894787 - -0.92718375 @@ -835180,6 +840853,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835226,6 +840900,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.912241 - -0.93358064 @@ -835287,6 +840962,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835333,6 +841009,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.929693 - -0.93969244 @@ -835394,6 +841071,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835440,6 +841118,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.947147 - -0.9455187 @@ -835501,6 +841180,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835547,6 +841227,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.9646 - -0.9510563 @@ -835608,6 +841289,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835654,6 +841336,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.982054 - -0.9563048 @@ -835715,6 +841398,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835761,6 +841445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 16.999506 - -0.96126145 @@ -835822,6 +841507,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835868,6 +841554,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.01696 - -0.9659258 @@ -835929,6 +841616,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -835975,6 +841663,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.034414 - -0.9702959 @@ -836036,6 +841725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836082,6 +841772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.051867 - -0.97437 @@ -836143,6 +841834,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836189,6 +841881,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.06932 - -0.97814775 @@ -836250,6 +841943,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836296,6 +841990,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.086773 - -0.9816271 @@ -836357,6 +842052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836403,6 +842099,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.104227 - -0.98480785 @@ -836464,6 +842161,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836510,6 +842208,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.12168 - -0.98768824 @@ -836571,6 +842270,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836617,6 +842317,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.139133 - -0.9902681 @@ -836678,6 +842379,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836724,6 +842426,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.156586 - -0.992546 @@ -836785,6 +842488,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836831,6 +842535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.17404 - -0.9945219 @@ -836892,6 +842597,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -836938,6 +842644,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.191492 - -0.9961946 @@ -836999,6 +842706,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837045,6 +842753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.208946 - -0.997564 @@ -837106,6 +842815,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837152,6 +842862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.2264 - -0.99862957 @@ -837213,6 +842924,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837259,6 +842971,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.243853 - -0.99939084 @@ -837320,6 +843033,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837366,6 +843080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.261307 - -0.9998477 @@ -837427,6 +843142,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837473,6 +843189,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.278759 - -1 @@ -837534,6 +843251,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837580,6 +843298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.296213 - -0.9998477 @@ -837641,6 +843360,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837687,6 +843407,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.313665 - -0.99939084 @@ -837748,6 +843469,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837794,6 +843516,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.33112 - -0.9986295 @@ -837855,6 +843578,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -837901,6 +843625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.348572 - -0.99756414 @@ -837962,6 +843687,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838008,6 +843734,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.366026 - -0.9961947 @@ -838069,6 +843796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838115,6 +843843,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.38348 - -0.9945218 @@ -838176,6 +843905,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838222,6 +843952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.400932 - -0.9925462 @@ -838283,6 +844014,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838329,6 +844061,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.418386 - -0.990268 @@ -838390,6 +844123,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838436,6 +844170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.435839 - -0.9876884 @@ -838497,6 +844232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838543,6 +844279,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.453293 - -0.98480767 @@ -838604,6 +844341,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838650,6 +844388,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.470745 - -0.98162735 @@ -838711,6 +844450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838757,6 +844497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.4882 - -0.97814757 @@ -838818,6 +844559,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838864,6 +844606,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.505651 - -0.9743703 @@ -838925,6 +844668,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -838971,6 +844715,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.523106 - -0.9702957 @@ -839032,6 +844777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839078,6 +844824,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.54056 - -0.96592563 @@ -839139,6 +844886,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839185,6 +844933,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.558012 - -0.96126175 @@ -839246,6 +844995,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839292,6 +845042,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.575466 - -0.9563046 @@ -839353,6 +845104,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839399,6 +845151,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.592918 - -0.95105666 @@ -839460,6 +845213,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839506,6 +845260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.610373 - -0.94551843 @@ -839567,6 +845322,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839613,6 +845369,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.627825 - -0.93969285 @@ -839674,6 +845431,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839720,6 +845478,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.645279 - -0.93358034 @@ -839781,6 +845540,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839827,6 +845587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.662731 - -0.92718416 @@ -839888,6 +845649,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -839934,6 +845696,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.680185 - -0.92050487 @@ -839995,6 +845758,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840041,6 +845805,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.697638 - -0.9135459 @@ -840102,6 +845867,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840148,6 +845914,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.715092 - -0.9063079 @@ -840209,6 +845976,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840255,6 +846023,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.732546 - -0.89879376 @@ -840316,6 +846085,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840362,6 +846132,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.749998 - -0.8910067 @@ -840423,6 +846194,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840469,6 +846241,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.767452 - -0.8829474 @@ -840530,6 +846303,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840576,6 +846350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.784904 - -0.87462 @@ -840637,6 +846412,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840683,6 +846459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.802359 - -0.86602527 @@ -840744,6 +846521,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840790,6 +846568,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.81981 - -0.8571677 @@ -840851,6 +846630,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -840897,6 +846677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.837265 - -0.8480481 @@ -840958,6 +846739,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841004,6 +846786,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.854717 - -0.8386711 @@ -841065,6 +846848,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841111,6 +846895,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.872171 - -0.82903767 @@ -841172,6 +846957,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841218,6 +847004,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.889626 - -0.81915164 @@ -841279,6 +847066,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841325,6 +847113,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.907078 - -0.8090172 @@ -841386,6 +847175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841432,6 +847222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.924532 - -0.7986352 @@ -841493,6 +847284,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841539,6 +847331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.941984 - -0.7880111 @@ -841600,6 +847393,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841646,6 +847440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.959438 - -0.77714574 @@ -841707,6 +847502,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841753,6 +847549,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.97689 - -0.7660449 @@ -841814,6 +847611,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841860,6 +847658,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 17.994345 - -0.7547095 @@ -841921,6 +847720,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -841967,6 +847767,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.011797 - -0.74314547 @@ -842028,6 +847829,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842074,6 +847876,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.029251 - -0.73135376 @@ -842135,6 +847938,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842181,6 +847985,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.046705 - -0.71933925 @@ -842242,6 +848047,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842288,6 +848094,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.064157 - -0.70710695 @@ -842349,6 +848156,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842395,6 +848203,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.081612 - -0.6946579 @@ -842456,6 +848265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842502,6 +848312,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.099064 - -0.6819987 @@ -842563,6 +848374,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842609,6 +848421,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.116518 - -0.6691303 @@ -842670,6 +848483,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842716,6 +848530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.13397 - -0.6560595 @@ -842777,6 +848592,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842823,6 +848639,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.151424 - -0.64278746 @@ -842884,6 +848701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -842930,6 +848748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.168877 - -0.62932104 @@ -842991,6 +848810,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843037,6 +848857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.18633 - -0.6156615 @@ -843098,6 +848919,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843144,6 +848966,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.203783 - -0.6018159 @@ -843205,6 +849028,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843251,6 +849075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.221237 - -0.5877854 @@ -843312,6 +849137,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843358,6 +849184,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.238691 - -0.5735759 @@ -843419,6 +849246,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843465,6 +849293,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.256144 - -0.55919325 @@ -843526,6 +849355,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843572,6 +849402,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.273598 - -0.54463863 @@ -843633,6 +849464,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843679,6 +849511,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.29105 - -0.5299198 @@ -843740,6 +849573,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843786,6 +849620,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.308504 - -0.51503783 @@ -843847,6 +849682,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -843893,6 +849729,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.325956 - -0.5000007 @@ -843954,6 +849791,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844000,6 +849838,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.34341 - -0.48480958 @@ -844061,6 +849900,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844107,6 +849947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.360863 - -0.46947244 @@ -844168,6 +850009,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844214,6 +850056,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.378317 - -0.45399064 @@ -844275,6 +850118,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844321,6 +850165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.395771 - -0.4383705 @@ -844382,6 +850227,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844428,6 +850274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.413223 - -0.42261857 @@ -844489,6 +850336,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844535,6 +850383,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.430677 - -0.40673617 @@ -844596,6 +850445,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844642,6 +850492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.44813 - -0.39073163 @@ -844703,6 +850554,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844749,6 +850601,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.465584 - -0.3746063 @@ -844810,6 +850663,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844856,6 +850710,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.483036 - -0.35836864 @@ -844917,6 +850772,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -844963,6 +850819,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.50049 - -0.34202003 @@ -845024,6 +850881,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845070,6 +850928,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.517942 - -0.32556903 @@ -845131,6 +850990,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845177,6 +851037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.535397 - -0.30901706 @@ -845238,6 +851099,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845284,6 +851146,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.55285 - -0.29237098 @@ -845345,6 +851208,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845391,6 +851255,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.570303 - -0.27563763 @@ -845452,6 +851317,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845498,6 +851364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.587757 - -0.25881848 @@ -845559,6 +851426,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845605,6 +851473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.60521 - -0.24192236 @@ -845666,6 +851535,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845712,6 +851582,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.622663 - -0.22495069 @@ -845773,6 +851644,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845819,6 +851691,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.640116 - -0.20791236 @@ -845880,6 +851753,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -845926,6 +851800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.65757 - -0.19080882 @@ -845987,6 +851862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846033,6 +851909,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.675022 - -0.17364904 @@ -846094,6 +851971,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846140,6 +852018,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.692476 - -0.15643448 @@ -846201,6 +852080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846247,6 +852127,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.709929 - -0.13917416 @@ -846308,6 +852189,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846354,6 +852236,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.727383 - -0.12186956 @@ -846415,6 +852298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846461,6 +852345,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.744837 - -0.10452782 @@ -846522,6 +852407,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846568,6 +852454,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.76229 - -0.087156154 @@ -846629,6 +852516,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846675,6 +852563,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.779743 - -0.06975603 @@ -846736,6 +852625,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846782,6 +852672,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.797195 - -0.052336566 @@ -846843,6 +852734,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846889,6 +852781,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.81465 - -0.03489925 @@ -846950,6 +852843,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -846996,6 +852890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.832102 - -0.017453214 @@ -847057,6 +852952,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -847103,6 +852999,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.867008 - 0.017451402 @@ -847164,6 +853061,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -847210,6 +853108,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.884462 - 0.034899347 @@ -847271,6 +853170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -847317,6 +853217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 18.901917 - 0.05233666 @@ -847384,6 +853285,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -847467,6 +853369,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -847551,6 +853454,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -847634,6 +853538,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -847755,6 +853660,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1368920483} +--- !u!1 &1368962642 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1368962643} + - component: {fileID: 1368962645} + - component: {fileID: 1368962644} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1368962643 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1368962642} + 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: 1612050181} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1368962644 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1368962642} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u4EEA\u8868\u76D8" +--- !u!222 &1368962645 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1368962642} --- !u!1 &1369175783 GameObject: m_ObjectHideFlags: 0 @@ -848512,7 +854491,7 @@ RectTransform: m_GameObject: {fileID: 1371012458} 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: 1640796314} m_RootOrder: 12 @@ -850796,74 +856775,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1377737015 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1377737016} - - component: {fileID: 1377737018} - - component: {fileID: 1377737017} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1377737016 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1377737015} - 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: 2067913524} - 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 &1377737017 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1377737015} - 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.5686275, g: 0.78039217, b: 0.68235296, 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 &1377737018 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1377737015} --- !u!1 &1378129034 GameObject: m_ObjectHideFlags: 0 @@ -851139,137 +857050,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1378715512} ---- !u!1 &1378802970 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1378802971} - - component: {fileID: 1378802975} - - component: {fileID: 1378802974} - - component: {fileID: 1378802973} - - component: {fileID: 1378802972} - m_Layer: 5 - m_Name: "btn_\u73AF\u5F62\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1378802971 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1378802970} - 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: 1321660058} - m_Father: {fileID: 1984073382} - 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: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1378802972 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1378802970} - 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 - delegates: [] ---- !u!114 &1378802973 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1378802970} - 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: 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 - 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: 1378802974} - 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 &1378802974 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1378802970} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &1378802975 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1378802970} --- !u!1 &1378928471 GameObject: m_ObjectHideFlags: 0 @@ -851293,7 +857073,7 @@ RectTransform: m_GameObject: {fileID: 1378928471} 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: 146631909} - {fileID: 975725358} @@ -852999,74 +858779,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1382434260} ---- !u!1 &1382470256 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1382470257} - - component: {fileID: 1382470259} - - component: {fileID: 1382470258} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1382470257 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1382470256} - 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: 906316176} - 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 &1382470258 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1382470256} - 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 &1382470259 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1382470256} --- !u!1 &1382632170 GameObject: m_ObjectHideFlags: 0 @@ -854590,75 +860302,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1386763531} ---- !u!1 &1386797672 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1386797673} - - component: {fileID: 1386797675} - - component: {fileID: 1386797674} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1386797673 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1386797672} - 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: 1656462875} - m_Father: {fileID: 1433808438} - 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: 32, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1386797674 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1386797672} - 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 &1386797675 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1386797672} --- !u!1 &1386854159 GameObject: m_ObjectHideFlags: 0 @@ -856741,6 +862384,74 @@ RectTransform: m_AnchoredPosition: {x: -10.9166565, y: 44.71428} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1392095598 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1392095599} + - component: {fileID: 1392095601} + - component: {fileID: 1392095600} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1392095599 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1392095598} + 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: 1671432792} + 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 &1392095600 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1392095598} + 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 &1392095601 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1392095598} --- !u!1 &1392109962 GameObject: m_ObjectHideFlags: 0 @@ -857283,6 +862994,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1393306827} +--- !u!1 &1393307349 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1393307350} + - component: {fileID: 1393307352} + - component: {fileID: 1393307351} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1393307350 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1393307349} + 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: 746051521} + m_Father: {fileID: 1101719826} + 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: 48, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1393307351 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1393307349} + 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 &1393307352 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1393307349} --- !u!1 &1393610910 GameObject: m_ObjectHideFlags: 0 @@ -859677,6 +865457,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1399900734} +--- !u!1 &1399975731 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1399975732} + - component: {fileID: 1399975734} + - component: {fileID: 1399975733} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1399975732 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1399975731} + 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: 1639516431} + 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: 80, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1399975733 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1399975731} + 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: "\u67D0\u6C34\u679C\u624B\u673A" +--- !u!222 &1399975734 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1399975731} --- !u!1 &1400087731 GameObject: m_ObjectHideFlags: 0 @@ -860230,7 +866084,7 @@ RectTransform: m_GameObject: {fileID: 1401735419} 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: 2057043785} m_RootOrder: 12 @@ -862377,7 +868231,7 @@ RectTransform: m_GameObject: {fileID: 1407588447} 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: 1228332530} - {fileID: 1817849955} @@ -864170,80 +870024,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1411976776} ---- !u!1 &1412019311 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1412019312} - - component: {fileID: 1412019314} - - component: {fileID: 1412019313} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1412019312 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1412019311} - 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: 1118534038} - 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: 80, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1412019313 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1412019311} - 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: "\u67D0\u4E3B\u98DF\u624B\u673A" ---- !u!222 &1412019314 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1412019311} --- !u!1 &1412376768 GameObject: m_ObjectHideFlags: 0 @@ -871919,6 +877699,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1429301777} +--- !u!1 &1429519472 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1429519473} + - component: {fileID: 1429519475} + - component: {fileID: 1429519474} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1429519473 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1429519472} + 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: 2001713747} + m_Father: {fileID: 1671432792} + 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: 48, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1429519474 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1429519472} + 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 &1429519475 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1429519472} --- !u!1 &1429887461 GameObject: m_ObjectHideFlags: 0 @@ -873532,137 +879381,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1433179614} ---- !u!1 &1433328758 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1433328759} - - component: {fileID: 1433328763} - - component: {fileID: 1433328762} - - component: {fileID: 1433328761} - - component: {fileID: 1433328760} - m_Layer: 5 - m_Name: "btn_\u67F1\u72B6\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1433328759 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433328758} - 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: 462583856} - m_Father: {fileID: 1984073382} - 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: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1433328760 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433328758} - 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 - delegates: [] ---- !u!114 &1433328761 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433328758} - 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: 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 - 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: 1433328762} - 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 &1433328762 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433328758} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &1433328763 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433328758} --- !u!1 &1433333294 GameObject: m_ObjectHideFlags: 0 @@ -873949,150 +879667,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1433677212} ---- !u!1 &1433808437 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1433808438} - - component: {fileID: 1433808442} - - component: {fileID: 1433808441} - - component: {fileID: 1433808440} - - component: {fileID: 1433808439} - m_Layer: 0 - m_Name: "2_\u5F20\u4E09" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1433808438 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433808437} - 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: 1842880488} - - {fileID: 1386797673} - m_Father: {fileID: 38397381} - 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: 29.5, y: 0} - m_SizeDelta: {x: 54, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1433808439 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433808437} - 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 &1433808440 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433808437} - 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: 1433808441} - 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 &1433808441 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433808437} - 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 &1433808442 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1433808437} --- !u!1 &1433895348 GameObject: m_ObjectHideFlags: 0 @@ -879613,150 +885187,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1446331669} ---- !u!1 &1446344904 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1446344905} - - component: {fileID: 1446344909} - - component: {fileID: 1446344908} - - component: {fileID: 1446344907} - - component: {fileID: 1446344906} - m_Layer: 0 - m_Name: 3_legend4 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1446344905 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1446344904} - 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: 907082771} - - {fileID: 138103305} - m_Father: {fileID: 1518182042} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -78} - m_SizeDelta: {x: 90, y: 16} - m_Pivot: {x: 1, y: 1} ---- !u!114 &1446344906 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1446344904} - 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 &1446344907 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1446344904} - 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: 1446344908} - 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 &1446344908 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1446344904} - 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 &1446344909 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1446344904} --- !u!1 &1446776884 GameObject: m_ObjectHideFlags: 0 @@ -882559,7 +887989,7 @@ RectTransform: m_GameObject: {fileID: 1454319892} 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: 2033384016} m_RootOrder: 1 @@ -882567,7 +887997,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 12, y: 19.333332} + m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1454319894 MonoBehaviour: @@ -882601,7 +888031,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 5 + m_Text: Text --- !u!222 &1454319895 CanvasRenderer: m_ObjectHideFlags: 0 @@ -886578,6 +892008,7 @@ MonoBehaviour: m_BorderWidth: 1 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -886623,6 +892054,7 @@ MonoBehaviour: m_BorderWidth: 1 m_BorderColor: {r: 0, g: 0, b: 0, a: 1} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -886708,6 +892140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -886754,6 +892187,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 0 @@ -886817,6 +892251,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -886863,6 +892298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1 @@ -886926,6 +892362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -886972,6 +892409,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 2 @@ -887035,6 +892473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887081,6 +892520,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 3 @@ -887144,6 +892584,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887190,6 +892631,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 4 @@ -887253,6 +892695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887299,6 +892742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 5 @@ -887362,6 +892806,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887408,6 +892853,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 6 @@ -887471,6 +892917,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887517,6 +892964,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 7 @@ -887580,6 +893028,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887626,6 +893075,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 8 @@ -887689,6 +893139,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887735,6 +893186,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 9 @@ -887798,6 +893250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887844,6 +893297,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 10 @@ -887906,6 +893360,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -887952,6 +893407,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 11 @@ -888014,6 +893470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888060,6 +893517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 12 @@ -888122,6 +893580,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888168,6 +893627,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 13 @@ -888230,6 +893690,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888276,6 +893737,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 14 @@ -888338,6 +893800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888384,6 +893847,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 15 @@ -888446,6 +893910,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888492,6 +893957,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 16 @@ -888554,6 +894020,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888600,6 +894067,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 17 @@ -888662,6 +894130,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888708,6 +894177,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 18 @@ -888770,6 +894240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888816,6 +894287,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 19 @@ -888878,6 +894350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -888924,6 +894397,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 20 @@ -888986,6 +894460,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889032,6 +894507,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 21 @@ -889094,6 +894570,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889140,6 +894617,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 22 @@ -889202,6 +894680,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889248,6 +894727,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 23 @@ -889310,6 +894790,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889356,6 +894837,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 0 @@ -889418,6 +894900,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889464,6 +894947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1 @@ -889526,6 +895010,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889572,6 +895057,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 2 @@ -889634,6 +895120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889680,6 +895167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 3 @@ -889742,6 +895230,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889788,6 +895277,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 4 @@ -889850,6 +895340,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -889896,6 +895387,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 5 @@ -889958,6 +895450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890004,6 +895497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 6 @@ -890066,6 +895560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890112,6 +895607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 7 @@ -890174,6 +895670,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890220,6 +895717,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 8 @@ -890282,6 +895780,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890328,6 +895827,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 9 @@ -890390,6 +895890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890436,6 +895937,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 10 @@ -890498,6 +896000,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890544,6 +896047,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 11 @@ -890606,6 +896110,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890652,6 +896157,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 12 @@ -890714,6 +896220,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890760,6 +896267,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 13 @@ -890822,6 +896330,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890868,6 +896377,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 14 @@ -890930,6 +896440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -890976,6 +896487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 15 @@ -891038,6 +896550,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891084,6 +896597,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 16 @@ -891146,6 +896660,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891192,6 +896707,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 17 @@ -891254,6 +896770,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891300,6 +896817,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 18 @@ -891362,6 +896880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891408,6 +896927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 19 @@ -891470,6 +896990,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891516,6 +897037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 20 @@ -891578,6 +897100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891624,6 +897147,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 21 @@ -891686,6 +897210,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891732,6 +897257,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 22 @@ -891794,6 +897320,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891840,6 +897367,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 23 @@ -891902,6 +897430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -891948,6 +897477,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 0 @@ -892010,6 +897540,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892056,6 +897587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1 @@ -892118,6 +897650,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892164,6 +897697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 2 @@ -892226,6 +897760,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892272,6 +897807,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 3 @@ -892334,6 +897870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892380,6 +897917,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 4 @@ -892442,6 +897980,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892488,6 +898027,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 5 @@ -892550,6 +898090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892596,6 +898137,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 6 @@ -892658,6 +898200,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892704,6 +898247,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 7 @@ -892766,6 +898310,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892812,6 +898357,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 8 @@ -892874,6 +898420,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -892920,6 +898467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 9 @@ -892982,6 +898530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893028,6 +898577,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 10 @@ -893090,6 +898640,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893136,6 +898687,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 11 @@ -893198,6 +898750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893244,6 +898797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 12 @@ -893306,6 +898860,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893352,6 +898907,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 13 @@ -893414,6 +898970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893460,6 +899017,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 14 @@ -893522,6 +899080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893568,6 +899127,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 15 @@ -893630,6 +899190,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893676,6 +899237,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 16 @@ -893738,6 +899300,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893784,6 +899347,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 17 @@ -893846,6 +899410,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -893892,6 +899457,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 18 @@ -893954,6 +899520,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894000,6 +899567,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 19 @@ -894062,6 +899630,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894108,6 +899677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 20 @@ -894170,6 +899740,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894216,6 +899787,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 21 @@ -894278,6 +899850,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894324,6 +899897,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 22 @@ -894386,6 +899960,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894432,6 +900007,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 23 @@ -894494,6 +900070,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894540,6 +900117,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 0 @@ -894602,6 +900180,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894648,6 +900227,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1 @@ -894710,6 +900290,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894756,6 +900337,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 2 @@ -894818,6 +900400,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894864,6 +900447,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 3 @@ -894926,6 +900510,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -894972,6 +900557,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 4 @@ -895034,6 +900620,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895080,6 +900667,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 5 @@ -895142,6 +900730,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895188,6 +900777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 6 @@ -895250,6 +900840,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895296,6 +900887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 7 @@ -895358,6 +900950,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895404,6 +900997,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 8 @@ -895466,6 +901060,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895512,6 +901107,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 9 @@ -895574,6 +901170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895620,6 +901217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 10 @@ -895682,6 +901280,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895728,6 +901327,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 11 @@ -895790,6 +901390,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895836,6 +901437,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 12 @@ -895898,6 +901500,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -895944,6 +901547,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 13 @@ -896006,6 +901610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896052,6 +901657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 14 @@ -896114,6 +901720,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896160,6 +901767,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 15 @@ -896222,6 +901830,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896268,6 +901877,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 16 @@ -896330,6 +901940,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896376,6 +901987,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 17 @@ -896438,6 +902050,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896484,6 +902097,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 18 @@ -896546,6 +902160,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896592,6 +902207,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 19 @@ -896654,6 +902270,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896700,6 +902317,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 20 @@ -896762,6 +902380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896808,6 +902427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 21 @@ -896870,6 +902490,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -896916,6 +902537,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 22 @@ -896978,6 +902600,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897024,6 +902647,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 23 @@ -897086,6 +902710,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897132,6 +902757,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 0 @@ -897194,6 +902820,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897240,6 +902867,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1 @@ -897302,6 +902930,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897348,6 +902977,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 2 @@ -897410,6 +903040,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897456,6 +903087,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 3 @@ -897518,6 +903150,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897564,6 +903197,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 4 @@ -897626,6 +903260,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897672,6 +903307,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 5 @@ -897734,6 +903370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897780,6 +903417,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 6 @@ -897842,6 +903480,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897888,6 +903527,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 7 @@ -897950,6 +903590,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -897996,6 +903637,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 8 @@ -898058,6 +903700,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898104,6 +903747,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 9 @@ -898166,6 +903810,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898212,6 +903857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 10 @@ -898274,6 +903920,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898320,6 +903967,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 11 @@ -898382,6 +904030,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898428,6 +904077,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 12 @@ -898490,6 +904140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898536,6 +904187,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 13 @@ -898598,6 +904250,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898644,6 +904297,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 14 @@ -898706,6 +904360,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898752,6 +904407,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 15 @@ -898814,6 +904470,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898860,6 +904517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 16 @@ -898922,6 +904580,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -898968,6 +904627,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 17 @@ -899030,6 +904690,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899076,6 +904737,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 18 @@ -899138,6 +904800,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899184,6 +904847,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 19 @@ -899246,6 +904910,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899292,6 +904957,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 20 @@ -899354,6 +905020,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899400,6 +905067,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 21 @@ -899462,6 +905130,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899508,6 +905177,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 22 @@ -899570,6 +905240,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899616,6 +905287,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 23 @@ -899678,6 +905350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899724,6 +905397,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 0 @@ -899786,6 +905460,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899832,6 +905507,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1 @@ -899894,6 +905570,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -899940,6 +905617,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 2 @@ -900002,6 +905680,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900048,6 +905727,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 3 @@ -900110,6 +905790,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900156,6 +905837,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 4 @@ -900218,6 +905900,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900264,6 +905947,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 5 @@ -900326,6 +906010,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900372,6 +906057,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 6 @@ -900434,6 +906120,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900480,6 +906167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 7 @@ -900542,6 +906230,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900588,6 +906277,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 8 @@ -900650,6 +906340,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900696,6 +906387,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 9 @@ -900758,6 +906450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900804,6 +906497,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 10 @@ -900866,6 +906560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -900912,6 +906607,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 11 @@ -900974,6 +906670,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901020,6 +906717,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 12 @@ -901082,6 +906780,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901128,6 +906827,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 13 @@ -901190,6 +906890,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901236,6 +906937,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 14 @@ -901298,6 +907000,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901344,6 +907047,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 15 @@ -901406,6 +907110,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901452,6 +907157,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 16 @@ -901514,6 +907220,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901560,6 +907267,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 17 @@ -901622,6 +907330,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901668,6 +907377,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 18 @@ -901730,6 +907440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901776,6 +907487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 19 @@ -901838,6 +907550,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901884,6 +907597,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 20 @@ -901946,6 +907660,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -901992,6 +907707,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 21 @@ -902054,6 +907770,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902100,6 +907817,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 22 @@ -902162,6 +907880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902208,6 +907927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 23 @@ -902270,6 +907990,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902316,6 +908037,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 0 @@ -902378,6 +908100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902424,6 +908147,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1 @@ -902486,6 +908210,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902532,6 +908257,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 2 @@ -902594,6 +908320,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902640,6 +908367,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 3 @@ -902702,6 +908430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902748,6 +908477,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 4 @@ -902810,6 +908540,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902856,6 +908587,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 5 @@ -902918,6 +908650,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -902964,6 +908697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 6 @@ -903026,6 +908760,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903072,6 +908807,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 7 @@ -903134,6 +908870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903180,6 +908917,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 8 @@ -903242,6 +908980,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903288,6 +909027,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 9 @@ -903350,6 +909090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903396,6 +909137,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 10 @@ -903458,6 +909200,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903504,6 +909247,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 11 @@ -903566,6 +909310,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903612,6 +909357,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 12 @@ -903674,6 +909420,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903720,6 +909467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 13 @@ -903782,6 +909530,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903828,6 +909577,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 14 @@ -903890,6 +909640,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -903936,6 +909687,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 15 @@ -903998,6 +909750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904044,6 +909797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 16 @@ -904106,6 +909860,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904152,6 +909907,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 17 @@ -904214,6 +909970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904260,6 +910017,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 18 @@ -904322,6 +910080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904368,6 +910127,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 19 @@ -904430,6 +910190,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904476,6 +910237,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 20 @@ -904538,6 +910300,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904584,6 +910347,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 21 @@ -904646,6 +910410,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904692,6 +910457,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 22 @@ -904754,6 +910520,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -904800,6 +910567,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 23 @@ -904893,6 +910661,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -904976,6 +910745,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -905067,6 +910837,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -905150,6 +910921,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -906220,6 +911992,75 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1469244904 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1469244905} + - component: {fileID: 1469244907} + - component: {fileID: 1469244906} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1469244905 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1469244904} + 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: 960536013} + m_Father: {fileID: 963198142} + 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: 26, y: 0} + m_SizeDelta: {x: 64, y: 16} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1469244906 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1469244904} + 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 &1469244907 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1469244904} --- !u!1 &1469258010 GameObject: m_ObjectHideFlags: 0 @@ -908213,6 +914054,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -908258,6 +914100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -908343,6 +914186,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -908389,6 +914233,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -908451,6 +914296,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -908497,6 +914343,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -908559,6 +914406,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -908605,6 +914453,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -908667,6 +914516,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -908713,6 +914563,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -908775,6 +914626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -908821,6 +914673,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -908883,6 +914736,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -908929,6 +914783,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -908991,6 +914846,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -909037,6 +914893,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -912554,6 +918411,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -912599,6 +918457,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -912684,6 +918543,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -912730,6 +918590,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1 @@ -912791,6 +918652,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -912837,6 +918699,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 3 @@ -912898,6 +918761,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -912944,6 +918808,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 9 @@ -913005,6 +918870,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -913051,6 +918917,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 27 @@ -913112,6 +918979,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -913158,6 +919026,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 81 @@ -913219,6 +919088,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -913265,6 +919135,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 247 @@ -913326,6 +919197,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -913372,6 +919244,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 741 @@ -913433,6 +919306,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -913479,6 +919353,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 2223 @@ -913540,6 +919415,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -913586,6 +919462,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 6669 @@ -913804,6 +919681,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -913849,6 +919727,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -913934,6 +919813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -913980,6 +919860,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1 @@ -914041,6 +919922,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914087,6 +919969,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 2 @@ -914148,6 +920031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914194,6 +920078,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 4 @@ -914255,6 +920140,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914301,6 +920187,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 8 @@ -914362,6 +920249,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914408,6 +920296,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 16 @@ -914469,6 +920358,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914515,6 +920405,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 32 @@ -914576,6 +920467,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914622,6 +920514,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 64 @@ -914683,6 +920576,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914729,6 +920623,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 128 @@ -914790,6 +920685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -914836,6 +920732,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 256 @@ -915054,6 +920951,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -915099,6 +920997,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -915184,6 +921083,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915230,6 +921130,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 0.5 @@ -915291,6 +921192,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915337,6 +921239,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 0.25 @@ -915398,6 +921301,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915444,6 +921348,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 0.125 @@ -915505,6 +921410,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915551,6 +921457,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 0.0625 @@ -915612,6 +921519,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915658,6 +921566,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 0.03125 @@ -915719,6 +921628,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915765,6 +921675,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 0.015625 @@ -915826,6 +921737,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915872,6 +921784,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 0.0078125 @@ -915933,6 +921846,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -915979,6 +921893,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 0.00390625 @@ -916040,6 +921955,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -916086,6 +922002,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 0.001953125 @@ -916162,6 +922079,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -916245,6 +922163,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -916329,6 +922248,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -916412,6 +922332,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -917561,6 +923482,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1484679476} +--- !u!1 &1484769690 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1484769691} + - component: {fileID: 1484769693} + - component: {fileID: 1484769692} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1484769691 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1484769690} + 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: 266926534} + 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: 24, y: 12} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1484769692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1484769690} + 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 &1484769693 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1484769690} --- !u!1 &1484902004 GameObject: m_ObjectHideFlags: 0 @@ -917911,6 +923900,137 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1485720192 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1485720193} + - component: {fileID: 1485720197} + - component: {fileID: 1485720196} + - component: {fileID: 1485720195} + - component: {fileID: 1485720194} + m_Layer: 5 + m_Name: "btn_\u6298\u7EBF\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1485720193 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485720192} + 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: 762081869} + m_Father: {fileID: 1984073382} + 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: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1485720194 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485720192} + 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 + delegates: [] +--- !u!114 &1485720195 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485720192} + 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: 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 + 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: 1485720196} + 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 &1485720196 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485720192} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1485720197 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485720192} --- !u!1 &1485739518 GameObject: m_ObjectHideFlags: 0 @@ -920539,75 +926659,6 @@ RectTransform: m_AnchoredPosition: {x: -5, y: 0} m_SizeDelta: {x: 1173.12, y: 338} m_Pivot: {x: 1, y: 0.5} ---- !u!1 &1492978654 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1492978655} - - component: {fileID: 1492978657} - - component: {fileID: 1492978656} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1492978655 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1492978654} - 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: 834489251} - m_Father: {fileID: 964698836} - 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: 32, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1492978656 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1492978654} - 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 &1492978657 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1492978654} --- !u!1 &1493354788 GameObject: m_ObjectHideFlags: 0 @@ -922734,7 +928785,7 @@ RectTransform: m_GameObject: {fileID: 1498581890} 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: 988304553} m_RootOrder: 1 @@ -923545,6 +929596,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -923590,6 +929642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -923675,6 +929728,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -923721,6 +929775,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 10 @@ -923782,6 +929837,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -923828,6 +929884,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 52 @@ -923889,6 +929946,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -923935,6 +929993,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 200 @@ -923996,6 +930055,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -924042,6 +930102,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 334 @@ -924103,6 +930164,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -924149,6 +930211,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 390 @@ -924210,6 +930273,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -924256,6 +930320,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 330 @@ -924317,6 +930382,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -924363,6 +930429,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 220 @@ -924437,6 +930504,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -924525,6 +930593,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -924609,6 +930678,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -924692,6 +930762,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -926427,6 +932498,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -926472,6 +932544,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -926557,6 +932630,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -926603,6 +932677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28604 - 77 @@ -926667,6 +932742,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -926713,6 +932789,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31163 - 77.4 @@ -926777,6 +932854,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -926823,6 +932901,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1516 - 68 @@ -926887,6 +932966,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -926933,6 +933013,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13670 - 74.7 @@ -926997,6 +933078,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927043,6 +933125,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28599 - 75 @@ -927107,6 +933190,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927153,6 +933237,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29476 - 77.1 @@ -927217,6 +933302,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927263,6 +933349,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 31476 - 75.4 @@ -927327,6 +933414,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927373,6 +933461,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 28666 - 78.1 @@ -927437,6 +933526,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927483,6 +933573,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1777 - 57.7 @@ -927547,6 +933638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927593,6 +933685,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 29550 - 79.1 @@ -927657,6 +933750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927703,6 +933797,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2076 - 67.9 @@ -927767,6 +933862,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927813,6 +933909,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12087 - 72 @@ -927877,6 +933974,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -927923,6 +934021,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24021 - 75.4 @@ -927987,6 +934086,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -928033,6 +934133,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 43296 - 76.8 @@ -928097,6 +934198,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -928143,6 +934245,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10088 - 70.8 @@ -928207,6 +934310,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -928253,6 +934357,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19349 - 69.6 @@ -928317,6 +934422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -928363,6 +934469,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10670 - 67.3 @@ -928427,6 +934534,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -928473,6 +934581,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 26424 - 75.7 @@ -928537,6 +934646,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -928583,6 +934693,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37062 - 75.4 @@ -928807,6 +934918,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -928852,6 +934964,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -928937,6 +935050,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -928983,6 +935097,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 44056 - 81.8 @@ -929047,6 +935162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929093,6 +935209,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 43294 - 81.7 @@ -929157,6 +935274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929203,6 +935321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13334 - 76.9 @@ -929267,6 +935386,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929313,6 +935433,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 21291 - 78.5 @@ -929377,6 +935498,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929423,6 +935545,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38923 - 80.8 @@ -929487,6 +935610,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929533,6 +935657,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 37599 - 81.9 @@ -929597,6 +935722,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929643,6 +935769,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 44053 - 81.1 @@ -929707,6 +935834,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929753,6 +935881,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 42182 - 82.8 @@ -929817,6 +935946,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929863,6 +935993,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5903 - 66.8 @@ -929927,6 +936058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -929973,6 +936105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 36162 - 83.5 @@ -930037,6 +936170,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930083,6 +936217,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1390 - 71.4 @@ -930147,6 +936282,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930193,6 +936329,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34644 - 80.7 @@ -930257,6 +936394,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930303,6 +936441,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 34186 - 80.6 @@ -930367,6 +936506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930413,6 +936553,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 64304 - 81.6 @@ -930477,6 +936618,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930523,6 +936665,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 24787 - 77.3 @@ -930587,6 +936730,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930633,6 +936777,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 23038 - 73.13 @@ -930697,6 +936842,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930743,6 +936889,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 19360 - 76.5 @@ -930807,6 +936954,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930853,6 +937001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 38225 - 81.4 @@ -930917,6 +937066,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -930963,6 +937113,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 53354 - 79.1 @@ -931033,6 +937184,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -931116,6 +937268,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -931200,6 +937353,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -931283,6 +937437,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -934370,7 +940525,7 @@ RectTransform: m_GameObject: {fileID: 1512473208} 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: 1466214550} m_RootOrder: 1 @@ -935994,13 +942149,13 @@ RectTransform: m_GameObject: {fileID: 1518182041} 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: 650241770} - - {fileID: 830820008} - - {fileID: 596907897} - - {fileID: 1446344905} - - {fileID: 1027321808} + - {fileID: 963198142} + - {fileID: 266926534} + - {fileID: 1046295484} + - {fileID: 1103795322} + - {fileID: 860933079} m_Father: {fileID: 1078410190} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -937439,6 +943594,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -937484,6 +943640,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -937569,6 +943726,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -937615,6 +943773,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 120 @@ -937676,6 +943835,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -937722,6 +943882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 132 @@ -937783,6 +943944,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -937829,6 +943991,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 101 @@ -937890,6 +944053,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -937936,6 +944100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 134 @@ -937997,6 +944162,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -938043,6 +944209,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 90 @@ -938104,6 +944271,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -938150,6 +944318,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 230 @@ -938211,6 +944380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -938257,6 +944427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 210 @@ -938475,6 +944646,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -938520,6 +944692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -938605,6 +944778,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -938651,6 +944825,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 220 @@ -938712,6 +944887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -938758,6 +944934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 182 @@ -938819,6 +944996,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -938865,6 +945043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 191 @@ -938926,6 +945105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -938972,6 +945152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 234 @@ -939033,6 +945214,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -939079,6 +945261,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 290 @@ -939140,6 +945323,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -939186,6 +945370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 330 @@ -939247,6 +945432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -939293,6 +945479,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 310 @@ -939511,6 +945698,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -939556,6 +945744,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -939641,6 +945830,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -939687,6 +945877,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 150 @@ -939748,6 +945939,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -939794,6 +945986,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 232 @@ -939855,6 +946048,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -939901,6 +946095,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 201 @@ -939962,6 +946157,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -940008,6 +946204,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 154 @@ -940069,6 +946266,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -940115,6 +946313,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 190 @@ -940176,6 +946375,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -940222,6 +946422,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 330 @@ -940283,6 +946484,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -940329,6 +946531,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 410 @@ -940547,6 +946750,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -940592,6 +946796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -940677,6 +946882,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -940723,6 +946929,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 320 @@ -940784,6 +946991,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -940830,6 +947038,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 332 @@ -940891,6 +947100,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -940937,6 +947147,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 301 @@ -940998,6 +947209,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -941044,6 +947256,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 334 @@ -941105,6 +947318,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -941151,6 +947365,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 390 @@ -941212,6 +947427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -941258,6 +947474,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 330 @@ -941319,6 +947536,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -941365,6 +947583,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 320 @@ -941583,6 +947802,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -941628,6 +947848,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -941713,6 +947934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -941759,6 +947981,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -941820,6 +948043,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -941866,6 +948090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 932 @@ -941927,6 +948152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -941973,6 +948199,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -942034,6 +948261,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -942080,6 +948308,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 934 @@ -942141,6 +948370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -942187,6 +948417,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1290 @@ -942248,6 +948479,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -942294,6 +948526,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1330 @@ -942355,6 +948588,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -942401,6 +948635,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -942475,6 +948710,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -942563,6 +948799,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -942647,6 +948884,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -942730,6 +948968,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -952908,14 +959147,14 @@ RectTransform: m_GameObject: {fileID: 1548663995} 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: 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_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &1548745454 @@ -954366,74 +960605,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1552522119} ---- !u!1 &1552529246 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1552529247} - - component: {fileID: 1552529249} - - component: {fileID: 1552529248} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1552529247 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1552529246} - 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: 1923053469} - 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 &1552529248 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1552529246} - 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 &1552529249 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1552529246} --- !u!1 &1552555078 GameObject: m_ObjectHideFlags: 0 @@ -959542,7 +965713,7 @@ RectTransform: m_GameObject: {fileID: 1563749976} 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: 1107243629} m_RootOrder: 5 @@ -961220,7 +967391,7 @@ RectTransform: m_GameObject: {fileID: 1569563131} 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: 615250659} - {fileID: 910399882} @@ -962137,6 +968308,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1571624606} +--- !u!1 &1571639439 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1571639440} + - component: {fileID: 1571639442} + - component: {fileID: 1571639441} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1571639440 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1571639439} + 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: 1266069851} + 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: 32, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1571639441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1571639439} + 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: "\u56FE\u4E8C" +--- !u!222 &1571639442 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1571639439} --- !u!1 &1571692221 GameObject: m_ObjectHideFlags: 0 @@ -963172,7 +969417,7 @@ RectTransform: m_GameObject: {fileID: 1574371187} 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: 449267886} m_RootOrder: 8 @@ -963684,75 +969929,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1575224867} ---- !u!1 &1575333950 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1575333951} - - component: {fileID: 1575333953} - - component: {fileID: 1575333952} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1575333951 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1575333950} - 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: 1148885962} - m_Father: {fileID: 622949153} - 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: 32, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1575333952 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1575333950} - 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 &1575333953 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1575333950} --- !u!1 &1575930292 GameObject: m_ObjectHideFlags: 0 @@ -965163,74 +971339,6 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1578813259 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1578813260} - - component: {fileID: 1578813262} - - component: {fileID: 1578813261} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1578813260 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1578813259} - 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: 596907897} - 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: 24, y: 12} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1578813261 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1578813259} - 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 &1578813262 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1578813259} --- !u!1 &1578830118 GameObject: m_ObjectHideFlags: 0 @@ -966146,7 +972254,7 @@ RectTransform: m_GameObject: {fileID: 1581140272} 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: 2057043785} m_RootOrder: 18 @@ -971948,75 +978056,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1593895647} ---- !u!1 &1594434492 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1594434493} - - component: {fileID: 1594434495} - - component: {fileID: 1594434494} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1594434493 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1594434492} - 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: 1757352846} - m_Father: {fileID: 1142617115} - 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: 80, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1594434494 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1594434492} - 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 &1594434495 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1594434492} --- !u!1 &1594478826 GameObject: m_ObjectHideFlags: 0 @@ -974335,7 +980374,7 @@ RectTransform: m_GameObject: {fileID: 1602577149} 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: 1640796314} m_RootOrder: 14 @@ -977809,6 +983848,137 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1611747262} +--- !u!1 &1612050180 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1612050181} + - component: {fileID: 1612050185} + - component: {fileID: 1612050184} + - component: {fileID: 1612050183} + - component: {fileID: 1612050182} + m_Layer: 5 + m_Name: "btn_\u4EEA\u8868\u76D8" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1612050181 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1612050180} + 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: 1368962643} + m_Father: {fileID: 1984073382} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1612050182 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1612050180} + 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 + delegates: [] +--- !u!114 &1612050183 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1612050180} + 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: 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 + 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: 1612050184} + 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 &1612050184 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1612050180} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1612050185 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1612050180} --- !u!1 &1612426472 GameObject: m_ObjectHideFlags: 0 @@ -986676,6 +992846,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1639367991} +--- !u!1 &1639516430 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1639516431} + - component: {fileID: 1639516433} + - component: {fileID: 1639516432} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1639516431 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1639516430} + 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: 1399975732} + m_Father: {fileID: 2144988468} + 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: 80, y: 14} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1639516432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1639516430} + 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 &1639516433 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1639516430} --- !u!1 &1639717417 GameObject: m_ObjectHideFlags: 0 @@ -987706,6 +993945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -987751,6 +993991,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -987836,6 +994077,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -987882,6 +994124,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4300 - 10000 @@ -987948,6 +994191,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -987994,6 +994238,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5000 - 14000 @@ -993935,80 +1000180,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1656211157} ---- !u!1 &1656462874 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1656462875} - - component: {fileID: 1656462877} - - component: {fileID: 1656462876} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1656462875 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1656462874} - 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: 1386797673} - 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: 32, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1656462876 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1656462874} - 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: "\u5F20\u4E09" ---- !u!222 &1656462877 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1656462874} --- !u!1 &1656699912 GameObject: m_ObjectHideFlags: 0 @@ -997796,7 +1003967,7 @@ RectTransform: m_GameObject: {fileID: 1667040878} 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: 2057043785} m_RootOrder: 4 @@ -998851,6 +1005022,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1670293374} +--- !u!1 &1670529704 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1670529705} + - component: {fileID: 1670529707} + - component: {fileID: 1670529706} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1670529705 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1670529704} + 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: 1885474279} + m_Father: {fileID: 1103795322} + 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: 26, y: 0} + m_SizeDelta: {x: 64, y: 16} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1670529706 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1670529704} + 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 &1670529707 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1670529704} --- !u!1 &1670529944 GameObject: m_ObjectHideFlags: 0 @@ -999061,6 +1005301,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1671024925} +--- !u!1 &1671432791 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1671432792} + - component: {fileID: 1671432796} + - component: {fileID: 1671432795} + - component: {fileID: 1671432794} + - component: {fileID: 1671432793} + m_Layer: 0 + m_Name: "0_\u67D0\u8F6F\u4EF6" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1671432792 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671432791} + 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: 1392095599} + - {fileID: 1429519473} + m_Father: {fileID: 1267491321} + 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: -182, y: 0} + m_SizeDelta: {x: 70, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1671432793 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671432791} + 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 &1671432794 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671432791} + 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: 1671432795} + 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 &1671432795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671432791} + 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 &1671432796 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671432791} --- !u!1 &1671814947 GameObject: m_ObjectHideFlags: 0 @@ -1000460,15 +1006844,15 @@ RectTransform: m_GameObject: {fileID: 1677503237} 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: 622539090} m_Father: {fileID: 926932800} m_RootOrder: 17 m_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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} --- !u!1 &1677695202 @@ -1006834,6 +1013218,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1006879,6 +1013264,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1006964,6 +1013350,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1007010,6 +1013397,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 63 @@ -1007071,6 +1013459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1007117,6 +1013506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 45 @@ -1007178,6 +1013568,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1007224,6 +1013615,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 19 @@ -1007285,6 +1013677,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1007331,6 +1013724,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 65 @@ -1007392,6 +1013786,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1007438,6 +1013833,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 42 @@ -1007510,6 +1013906,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1007593,6 +1013990,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1007677,6 +1014075,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1007760,6 +1014159,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1013958,6 +1020358,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1709920120} +--- !u!1 &1710012294 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1710012295} + - component: {fileID: 1710012299} + - component: {fileID: 1710012298} + - component: {fileID: 1710012297} + - component: {fileID: 1710012296} + m_Layer: 0 + m_Name: "3_\u674E\u56DB" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1710012295 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1710012294} + 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: 108914605} + - {fileID: 420497186} + m_Father: {fileID: 38397381} + m_RootOrder: 3 + 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: 88.5, y: 0} + m_SizeDelta: {x: 54, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1710012296 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1710012294} + 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 &1710012297 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1710012294} + 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: 1710012298} + 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 &1710012298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1710012294} + 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 &1710012299 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1710012294} --- !u!1 &1710031102 GameObject: m_ObjectHideFlags: 0 @@ -1020836,7 +1027380,7 @@ RectTransform: m_GameObject: {fileID: 1730498761} m_LocalRotation: {x: 0, y: 0, z: 0.71569276, w: 0.6984153} 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: 926932800} m_RootOrder: 13 @@ -1023704,6 +1030248,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1023749,6 +1030294,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1023834,6 +1030380,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1023880,6 +1030427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -1023941,6 +1030489,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1023987,6 +1030536,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1081.1 @@ -1024048,6 +1030598,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1024094,6 +1030645,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -1024155,6 +1030707,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1024201,6 +1030754,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1019.7 @@ -1024262,6 +1030816,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1024308,6 +1030863,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 492 @@ -1024369,6 +1030925,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1024415,6 +1030972,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1511.6 @@ -1024476,6 +1031034,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1024522,6 +1031081,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -1024740,6 +1031300,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1024785,6 +1031346,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1024870,6 +1031432,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1024916,6 +1031479,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -1024977,6 +1031541,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1025023,6 +1031588,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1081.1 @@ -1025084,6 +1031650,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1025130,6 +1031697,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -1025191,6 +1031759,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1025237,6 +1031806,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1019.7 @@ -1025298,6 +1031868,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1025344,6 +1031915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 492 @@ -1025405,6 +1031977,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1025451,6 +1032024,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1511.6 @@ -1025512,6 +1032086,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1025558,6 +1032133,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -1025632,6 +1032208,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1025720,6 +1032297,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1025804,6 +1032382,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1025887,6 +1032466,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1026806,15 +1033386,15 @@ RectTransform: m_GameObject: {fileID: 1740583915} 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: 124775144} m_Father: {fileID: 1078410190} m_RootOrder: 9 m_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_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 0} --- !u!1 &1740861766 @@ -1030992,7 +1037572,7 @@ MonoBehaviour: m_Panel: {fileID: 665512901} - m_Name: "\u96F7\u8FBE\u56FE" m_Title: "\u96F7\u8FBE\u56FE RadarChart" - m_Selected: 1 + m_Selected: 0 m_Panel: {fileID: 37761822} - m_Name: "\u6563\u70B9\u56FE" m_Title: "\u6563\u70B9\u56FE ScatterChart" @@ -1031000,7 +1037580,7 @@ MonoBehaviour: m_Panel: {fileID: 585638126} - m_Name: "\u70ED\u529B\u56FE" m_Title: "\u70ED\u529B\u56FE HeatmapChart" - m_Selected: 0 + m_Selected: 1 m_Panel: {fileID: 1229419433} - m_Name: "\u4EEA\u8868\u76D8" m_Title: "\u4EEA\u8868\u76D8 GaugeChart" @@ -1032331,7 +1038911,7 @@ RectTransform: m_GameObject: {fileID: 1755255830} 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: 2078149162} m_RootOrder: 1 @@ -1032339,7 +1038919,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 12, y: 19.333332} + m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1755255832 MonoBehaviour: @@ -1032373,7 +1038953,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 7 + m_Text: Text --- !u!222 &1755255833 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1032551,7 +1039131,7 @@ RectTransform: m_GameObject: {fileID: 1755843773} 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: 505850976} - {fileID: 1327412183} @@ -1032913,80 +1039493,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1757302242} ---- !u!1 &1757352845 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1757352846} - - component: {fileID: 1757352848} - - component: {fileID: 1757352847} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1757352846 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1757352845} - 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: 1594434493} - 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: 80, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1757352847 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1757352845} - 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: "\u67D0\u6C34\u679C\u624B\u673A" ---- !u!222 &1757352848 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1757352845} --- !u!1 &1757530111 GameObject: m_ObjectHideFlags: 0 @@ -1035287,7 +1041793,7 @@ RectTransform: m_GameObject: {fileID: 1764794657} 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: 672428230} m_RootOrder: 1 @@ -1035295,7 +1041801,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 12, y: 19.333332} + m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1764794659 MonoBehaviour: @@ -1035329,7 +1041835,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 1 + m_Text: Text --- !u!222 &1764794660 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1039000,6 +1045506,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1772970279} +--- !u!1 &1772974966 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1772974967} + - component: {fileID: 1772974969} + - component: {fileID: 1772974968} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1772974967 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1772974966} + 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: 2144988468} + 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 &1772974968 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1772974966} + 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 &1772974969 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1772974966} --- !u!1 &1773256496 GameObject: m_ObjectHideFlags: 0 @@ -1039141,6 +1045715,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1773575469} +--- !u!1 &1773646171 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1773646172} + - component: {fileID: 1773646174} + - component: {fileID: 1773646173} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1773646172 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1773646171} + 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: 420497186} + 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: 32, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1773646173 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1773646171} + 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: "\u674E\u56DB" +--- !u!222 &1773646174 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1773646171} --- !u!1 &1773793721 GameObject: m_ObjectHideFlags: 0 @@ -1043677,7 +1050325,7 @@ RectTransform: m_GameObject: {fileID: 1785257471} 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: 926932800} m_RootOrder: 1 @@ -1046646,6 +1053294,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1046691,6 +1053340,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1046776,6 +1053426,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1046822,6 +1053473,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 4000 @@ -1047040,6 +1053692,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1047085,6 +1053738,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1047170,6 +1053824,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1047216,6 +1053871,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 7000 @@ -1047434,6 +1054090,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1047479,6 +1054136,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1047564,6 +1054222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1047610,6 +1054269,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 5000 @@ -1047828,6 +1054488,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1047873,6 +1054534,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1047958,6 +1054620,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1048004,6 +1054667,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 4000 @@ -1048071,6 +1054735,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1048159,6 +1054824,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1048244,6 +1054910,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1048327,6 +1054994,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1049601,137 +1056269,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1795029630 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1795029631} - - component: {fileID: 1795029635} - - component: {fileID: 1795029634} - - component: {fileID: 1795029633} - - component: {fileID: 1795029632} - m_Layer: 5 - m_Name: "btn_\u4EEA\u8868\u76D8" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1795029631 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795029630} - 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: 924078037} - m_Father: {fileID: 1984073382} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1795029632 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795029630} - 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 - delegates: [] ---- !u!114 &1795029633 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795029630} - 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: 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 - 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: 1795029634} - 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 &1795029634 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795029630} - 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: 1, g: 1, b: 1, 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: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 ---- !u!222 &1795029635 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795029630} --- !u!1 &1795355270 GameObject: m_ObjectHideFlags: 0 @@ -1049800,80 +1056337,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1795355270} ---- !u!1 &1795371471 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1795371472} - - component: {fileID: 1795371474} - - component: {fileID: 1795371473} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1795371472 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795371471} - 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: 2137836894} - 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: 32, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1795371473 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795371471} - 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: "\u56FE\u4E8C" ---- !u!222 &1795371474 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1795371471} --- !u!1 &1795433877 GameObject: m_ObjectHideFlags: 0 @@ -1051440,150 +1057903,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1798926110} ---- !u!1 &1799204065 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1799204066} - - component: {fileID: 1799204070} - - component: {fileID: 1799204069} - - component: {fileID: 1799204068} - - component: {fileID: 1799204067} - m_Layer: 0 - m_Name: "1_\u67D0\u4E3B\u98DF\u624B\u673A" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1799204066 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1799204065} - 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: 2022981070} - - {fileID: 1118534038} - m_Father: {fileID: 1267491321} - 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: -91, y: 0} - m_SizeDelta: {x: 102, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1799204067 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1799204065} - 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 &1799204068 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1799204065} - 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: 1799204069} - 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 &1799204069 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1799204065} - 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 &1799204070 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1799204065} --- !u!1 &1799236303 GameObject: m_ObjectHideFlags: 0 @@ -1051977,75 +1058296,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1800143939} ---- !u!1 &1800425252 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1800425253} - - component: {fileID: 1800425255} - - component: {fileID: 1800425254} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1800425253 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1800425252} - 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: 1915676454} - m_Father: {fileID: 875529678} - 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: 48, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1800425254 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1800425252} - 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 &1800425255 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1800425252} --- !u!1 &1800793882 GameObject: m_ObjectHideFlags: 0 @@ -1057686,14 +1063936,14 @@ RectTransform: m_GameObject: {fileID: 1816956021} 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: 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_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &1816971753 @@ -1057895,7 +1064145,7 @@ RectTransform: m_GameObject: {fileID: 1817958408} m_LocalRotation: {x: 0, y: 0, z: -0.4826711, w: 0.87580174} 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: 1910686491} m_RootOrder: 10 @@ -1063622,6 +1069872,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1063667,6 +1069918,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1063752,6 +1070004,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1063798,6 +1070051,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 1116.8 @@ -1063859,6 +1070113,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1063905,6 +1070160,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 671.4 @@ -1063966,6 +1070222,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1064012,6 +1070269,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1239.7 @@ -1064073,6 +1070331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1064119,6 +1070378,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 670 @@ -1064180,6 +1070440,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1064226,6 +1070487,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1290 @@ -1064287,6 +1070549,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1064333,6 +1070596,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1513.81 @@ -1064394,6 +1070658,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1064440,6 +1070705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -1064658,6 +1070924,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1064703,6 +1070970,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1064788,6 +1071056,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1064834,6 +1071103,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 2227.1 @@ -1064895,6 +1071165,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1064941,6 +1071212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1671.4 @@ -1065002,6 +1071274,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1065048,6 +1071321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 2239.7 @@ -1065109,6 +1071383,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1065155,6 +1071430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1670 @@ -1065216,6 +1071492,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1065262,6 +1071539,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 2290 @@ -1065323,6 +1071601,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1065369,6 +1071648,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 2513.81 @@ -1065430,6 +1071710,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1065476,6 +1071757,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 2320 @@ -1065550,6 +1071832,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1065638,6 +1071921,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1065722,6 +1072006,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1065805,6 +1072090,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1068683,74 +1074969,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} ---- !u!1 &1842880487 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1842880488} - - component: {fileID: 1842880490} - - component: {fileID: 1842880489} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1842880488 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1842880487} - 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: 1433808438} - 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 &1842880489 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1842880487} - 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 &1842880490 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1842880487} --- !u!1 &1842895477 GameObject: m_ObjectHideFlags: 0 @@ -1069292,80 +1075510,6 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1845644410 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1845644411} - - component: {fileID: 1845644413} - - component: {fileID: 1845644412} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1845644411 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1845644410} - 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: 1240332485} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1845644412 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1845644410} - 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: 1, g: 1, b: 1, 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: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u997C\u56FE" ---- !u!222 &1845644413 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1845644410} --- !u!1 &1845719916 GameObject: m_ObjectHideFlags: 0 @@ -1069636,7 +1075780,7 @@ RectTransform: m_GameObject: {fileID: 1846413633} 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: 1107243629} m_RootOrder: 12 @@ -1075494,6 +1081638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1075539,6 +1081684,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1075624,6 +1081770,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1075670,6 +1081817,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 8.04 @@ -1075731,6 +1081879,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1075777,6 +1081926,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 6.95 @@ -1075838,6 +1081988,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1075884,6 +1082035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 13 - 7.58 @@ -1075945,6 +1082097,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1075991,6 +1082144,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 8.81 @@ -1076052,6 +1082206,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1076098,6 +1082253,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 11 - 8.33 @@ -1076159,6 +1082315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1076205,6 +1082362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 14 - 9.96 @@ -1076266,6 +1082424,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1076312,6 +1082471,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 7.24 @@ -1076373,6 +1082533,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1076419,6 +1082580,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 4.26 @@ -1076480,6 +1082642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1076526,6 +1082689,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 12 - 10.84 @@ -1076587,6 +1082751,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1076633,6 +1082798,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 4.82 @@ -1076694,6 +1082860,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1076740,6 +1082907,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 5.68 @@ -1076961,6 +1083129,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1077006,6 +1083175,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1077091,6 +1083261,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077137,6 +1083308,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 3 @@ -1077199,6 +1083371,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077245,6 +1083418,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 3.5 @@ -1077307,6 +1083481,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077353,6 +1083528,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 4 @@ -1077415,6 +1083591,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077461,6 +1083638,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 4.5 @@ -1077523,6 +1083701,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077569,6 +1083748,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 5 @@ -1077631,6 +1083811,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077677,6 +1083858,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 5.5 @@ -1077739,6 +1083921,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077785,6 +1083968,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 6 @@ -1077847,6 +1084031,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1077893,6 +1084078,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 6.5 @@ -1077955,6 +1084141,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1078001,6 +1084188,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 8 - 7 @@ -1078063,6 +1084251,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1078109,6 +1084298,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 9 - 7.5 @@ -1078171,6 +1084361,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1078217,6 +1084408,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 10 - 8 @@ -1078279,6 +1084471,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1078325,6 +1084518,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 15 - 10.5 @@ -1078387,6 +1084581,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1078433,6 +1084628,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 20 - 13 @@ -1078501,6 +1084697,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1078584,6 +1084781,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1078668,6 +1084866,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1078751,6 +1084950,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1079880,6 +1086080,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1079925,6 +1086126,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1080010,6 +1086212,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1080056,6 +1086259,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 62 @@ -1080117,6 +1086321,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1080163,6 +1086368,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 55 @@ -1080224,6 +1086430,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1080270,6 +1086477,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 30 @@ -1080331,6 +1086539,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1080377,6 +1086586,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 78 @@ -1080438,6 +1086648,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1080484,6 +1086695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 50 @@ -1080702,6 +1086914,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1080747,6 +1086960,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1080832,6 +1087046,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1080878,6 +1087093,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 55 @@ -1080939,6 +1087155,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1080985,6 +1087202,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 40 @@ -1081046,6 +1087264,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1081092,6 +1087311,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 21 @@ -1081153,6 +1087373,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1081199,6 +1087420,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 48 @@ -1081260,6 +1087482,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1081306,6 +1087529,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 30 @@ -1081378,6 +1087602,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1081461,6 +1087686,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1081545,6 +1087771,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1081628,6 +1087855,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1083035,80 +1089263,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1871848782} ---- !u!1 &1871911089 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1871911090} - - component: {fileID: 1871911092} - - component: {fileID: 1871911091} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1871911090 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1871911089} - 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: 592192548} - 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: 64, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1871911091 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1871911089} - 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: "\u9884\u7B97\u5206\u914D" ---- !u!222 &1871911092 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1871911089} --- !u!1 &1871957889 GameObject: m_ObjectHideFlags: 0 @@ -1084556,6 +1090710,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1875255328} +--- !u!1 &1875727894 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1875727895} + - component: {fileID: 1875727899} + - component: {fileID: 1875727898} + - component: {fileID: 1875727897} + - component: {fileID: 1875727896} + m_Layer: 0 + m_Name: "0_\u56FE\u4E00" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1875727895 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1875727894} + 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: 2015044594} + - {fileID: 80202033} + m_Father: {fileID: 38397381} + 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: -88.5, y: 0} + m_SizeDelta: {x: 54, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1875727896 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1875727894} + 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 &1875727897 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1875727894} + 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: 1875727898} + 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 &1875727898 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1875727894} + 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 &1875727899 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1875727894} --- !u!1 &1875846163 GameObject: m_ObjectHideFlags: 0 @@ -1084945,75 +1091243,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1876589353} ---- !u!1 &1876641486 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1876641487} - - component: {fileID: 1876641489} - - component: {fileID: 1876641488} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1876641487 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1876641486} - 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: 1038233713} - m_Father: {fileID: 596907897} - 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: 26, y: 0} - m_SizeDelta: {x: 64, y: 16} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1876641488 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1876641486} - 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 &1876641489 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1876641486} --- !u!1 &1876656215 GameObject: m_ObjectHideFlags: 0 @@ -1085533,6 +1091762,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1878575234} +--- !u!1 &1878595667 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1878595668} + - component: {fileID: 1878595670} + - component: {fileID: 1878595669} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1878595668 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1878595667} + 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: 2046948044} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1878595669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1878595667} + 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: 1, g: 1, b: 1, 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: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u997C\u56FE" +--- !u!222 &1878595670 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1878595667} --- !u!1 &1878598571 GameObject: m_ObjectHideFlags: 0 @@ -1087783,7 +1094086,7 @@ RectTransform: m_GameObject: {fileID: 1884850780} m_LocalRotation: {x: 0, y: 0, z: -0.28736052, w: 0.9578225} 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: 926932800} m_RootOrder: 12 @@ -1088080,6 +1094383,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1885427563} +--- !u!1 &1885474278 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1885474279} + - component: {fileID: 1885474281} + - component: {fileID: 1885474280} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1885474279 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1885474278} + 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: 1670529705} + 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: 64, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1885474280 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1885474278} + 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: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: legend4 +--- !u!222 &1885474281 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1885474278} --- !u!1 &1885784866 GameObject: m_ObjectHideFlags: 0 @@ -1088894,80 +1095271,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1888022903} ---- !u!1 &1888159199 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1888159200} - - component: {fileID: 1888159202} - - component: {fileID: 1888159201} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1888159200 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1888159199} - 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: 1115561176} - 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: 64, y: 20} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1888159201 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1888159199} - 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: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: legend1 ---- !u!222 &1888159202 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1888159199} --- !u!1 &1888447904 GameObject: m_ObjectHideFlags: 0 @@ -1093562,74 +1099865,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1900663002 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1900663003} - - component: {fileID: 1900663005} - - component: {fileID: 1900663004} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1900663003 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1900663002} - 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: 964698836} - 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 &1900663004 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1900663002} - 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.83137256, g: 0.50980395, b: 0.39607844, 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 &1900663005 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1900663002} --- !u!1 &1900740165 GameObject: m_ObjectHideFlags: 0 @@ -1095367,6 +1101602,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &1904723353 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1904723354} + - component: {fileID: 1904723356} + - component: {fileID: 1904723355} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1904723354 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1904723353} + 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: 963198142} + 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: 24, y: 12} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1904723355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1904723353} + 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 &1904723356 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1904723353} --- !u!1 &1904879177 GameObject: m_ObjectHideFlags: 0 @@ -1097554,6 +1103857,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1097599,6 +1103903,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1097684,6 +1103989,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1097730,6 +1104036,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4300 - 10000 @@ -1097796,6 +1104103,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1097842,6 +1104150,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5000 - 14000 @@ -1099035,7 +1105344,7 @@ RectTransform: m_GameObject: {fileID: 1913985791} m_LocalRotation: {x: 0, y: 0, z: 0.28066668, w: 0.9598053} 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: 926932800} m_RootOrder: 14 @@ -1099588,80 +1105897,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1915634703} ---- !u!1 &1915676453 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1915676454} - - component: {fileID: 1915676456} - - component: {fileID: 1915676455} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1915676454 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1915676453} - 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: 1800425253} - 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: 48, y: 18} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1915676455 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1915676453} - 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: "\u67D0\u8F6F\u4EF6" ---- !u!222 &1915676456 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1915676453} --- !u!1 &1915738988 GameObject: m_ObjectHideFlags: 0 @@ -1102386,150 +1108621,6 @@ RectTransform: m_AnchoredPosition: {x: -185.58333, y: -74.14286} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1923053468 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 1923053469} - - component: {fileID: 1923053473} - - component: {fileID: 1923053472} - - component: {fileID: 1923053471} - - component: {fileID: 1923053470} - m_Layer: 0 - m_Name: "1_\u5B9E\u9645\u5F00\u9500" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1923053469 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1923053468} - 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: 1552529247} - - {fileID: 1166094915} - m_Father: {fileID: 971520527} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 86, y: 14} - m_Pivot: {x: 1, y: 1} ---- !u!114 &1923053470 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1923053468} - 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 &1923053471 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1923053468} - 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: 1923053472} - 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 &1923053472 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1923053468} - 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 &1923053473 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 1923053468} --- !u!1 &1923450785 GameObject: m_ObjectHideFlags: 0 @@ -1103076,6 +1109167,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1103121,6 +1109213,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1103206,6 +1109299,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1103252,6 +1109346,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 820 @@ -1103313,6 +1109408,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1103359,6 +1109455,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 2700 @@ -1103420,6 +1109517,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1103466,6 +1109564,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 901 @@ -1103527,6 +1109626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1103573,6 +1109673,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1019.7 @@ -1103634,6 +1109735,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1103680,6 +1109782,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - -100 @@ -1103741,6 +1109844,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1103787,6 +1109891,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 1511.6 @@ -1103848,6 +1109953,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1103894,6 +1110000,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1320 @@ -1104112,6 +1110219,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1104157,6 +1110265,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1104242,6 +1110351,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1104288,6 +1110398,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 520 @@ -1104349,6 +1110460,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1104395,6 +1110507,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 681.1 @@ -1104456,6 +1110569,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1104502,6 +1110616,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1200 @@ -1104563,6 +1110678,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1104609,6 +1110725,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1500 @@ -1104670,6 +1110787,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1104716,6 +1110834,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 300 @@ -1104777,6 +1110896,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1104823,6 +1110943,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 500 @@ -1104884,6 +1111005,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1104930,6 +1111052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 1000 @@ -1105004,6 +1111127,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1105092,6 +1111216,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1105176,6 +1111301,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1105259,6 +1111385,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1115537,7 +1121664,7 @@ RectTransform: m_GameObject: {fileID: 1953013593} 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: 462267860} - {fileID: 1260951933} @@ -1118668,7 +1124795,7 @@ RectTransform: m_GameObject: {fileID: 1961484283} 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: 1107243629} m_RootOrder: 7 @@ -1119007,6 +1125134,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1961997814} +--- !u!1 &1962012490 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1962012491} + - component: {fileID: 1962012493} + - component: {fileID: 1962012492} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1962012491 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1962012490} + 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: 1103795322} + 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: 24, y: 12} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1962012492 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1962012490} + 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.83137256, g: 0.50980395, b: 0.39607844, 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 &1962012493 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1962012490} --- !u!1 &1962693695 GameObject: m_ObjectHideFlags: 0 @@ -1120190,7 +1126385,7 @@ RectTransform: m_GameObject: {fileID: 1967047105} 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: 1910686491} m_RootOrder: 9 @@ -1125475,16 +1131670,16 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 604728882} - - {fileID: 259972368} - - {fileID: 1433328759} - - {fileID: 1240332485} - - {fileID: 354121007} - - {fileID: 662702352} - - {fileID: 928295664} - - {fileID: 1795029631} - - {fileID: 1378802971} - - {fileID: 239759328} + - {fileID: 1017904540} + - {fileID: 1485720193} + - {fileID: 175163602} + - {fileID: 2046948044} + - {fileID: 551974268} + - {fileID: 1190818558} + - {fileID: 493280966} + - {fileID: 1612050181} + - {fileID: 455343983} + - {fileID: 340045595} m_Father: {fileID: 834546373} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -1126184,6 +1132379,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1126229,6 +1132425,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1126314,6 +1132511,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1126360,6 +1132558,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 69 - 100 @@ -1126726,7 +1132925,7 @@ RectTransform: m_GameObject: {fileID: 1985320544} 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: 1476242265} - {fileID: 7020698} @@ -1130761,7 +1136960,7 @@ RectTransform: m_GameObject: {fileID: 1996028637} 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: 745375619} - {fileID: 276151278} @@ -1132453,6 +1138652,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2001571748} +--- !u!1 &2001713746 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2001713747} + - component: {fileID: 2001713749} + - component: {fileID: 2001713748} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2001713747 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2001713746} + 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: 1429519473} + 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: 48, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2001713748 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2001713746} + 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: "\u67D0\u8F6F\u4EF6" +--- !u!222 &2001713749 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2001713746} --- !u!1 &2002185315 GameObject: m_ObjectHideFlags: 0 @@ -1137302,6 +1143575,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2015044593 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2015044594} + - component: {fileID: 2015044596} + - component: {fileID: 2015044595} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2015044594 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2015044593} + 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: 1875727895} + 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 &2015044595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2015044593} + 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 &2015044596 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2015044593} --- !u!1 &2015071946 GameObject: m_ObjectHideFlags: 0 @@ -1140037,74 +1146378,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2022968821} ---- !u!1 &2022981069 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 2022981070} - - component: {fileID: 2022981072} - - component: {fileID: 2022981071} - m_Layer: 0 - m_Name: icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2022981070 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2022981069} - 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: 1799204066} - 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 &2022981071 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2022981069} - 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 &2022981072 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2022981069} --- !u!1 &2022985278 GameObject: m_ObjectHideFlags: 0 @@ -1148880,6 +1155153,137 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2046644312} +--- !u!1 &2046948043 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2046948044} + - component: {fileID: 2046948048} + - component: {fileID: 2046948047} + - component: {fileID: 2046948046} + - component: {fileID: 2046948045} + m_Layer: 5 + m_Name: "btn_\u997C\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2046948044 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2046948043} + 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: 1878595668} + m_Father: {fileID: 1984073382} + 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: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2046948045 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2046948043} + 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 + delegates: [] +--- !u!114 &2046948046 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2046948043} + 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: 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 + 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: 2046948047} + 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 &2046948047 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2046948043} + 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: 1, g: 1, b: 1, 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: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2046948048 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2046948043} --- !u!1 &2047037642 GameObject: m_ObjectHideFlags: 0 @@ -1149927,6 +1156331,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2049780964} +--- !u!1 &2050019859 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2050019860} + - component: {fileID: 2050019862} + - component: {fileID: 2050019861} + m_Layer: 0 + m_Name: icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2050019860 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2050019859} + 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: 1306215264} + 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 &2050019861 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2050019859} + 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 &2050019862 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2050019859} --- !u!1 &2050080651 GameObject: m_ObjectHideFlags: 0 @@ -1150310,6 +1156782,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &2051365699 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2051365700} + - component: {fileID: 2051365702} + - component: {fileID: 2051365701} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2051365700 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2051365699} + 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: 80202033} + 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: 32, y: 18} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2051365701 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2051365699} + 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: "\u56FE\u4E00" +--- !u!222 &2051365702 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2051365699} --- !u!1 &2051486069 GameObject: m_ObjectHideFlags: 0 @@ -1150905,7 +1157451,7 @@ RectTransform: m_GameObject: {fileID: 2053446435} 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: 1278002012} m_RootOrder: 1 @@ -1150913,7 +1157459,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 12, y: 19.333332} + m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2053446437 MonoBehaviour: @@ -1150947,7 +1157493,7 @@ MonoBehaviour: m_HorizontalOverflow: 1 m_VerticalOverflow: 1 m_LineSpacing: 1 - m_Text: 1 + m_Text: Text --- !u!222 &2053446438 CanvasRenderer: m_ObjectHideFlags: 0 @@ -1152686,6 +1159232,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1152731,6 +1159278,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1152816,6 +1159364,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1152862,6 +1159411,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 60 - 73 @@ -1153084,6 +1159634,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1153129,6 +1159680,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1153214,6 +1159766,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1153260,6 +1159813,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 85 - 90 @@ -1153326,6 +1159880,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1153372,6 +1159927,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 95 - 80 @@ -1153596,6 +1160152,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1153641,6 +1160198,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1153726,6 +1160284,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1153772,6 +1160331,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2.6 - 5.9 @@ -1153843,6 +1160403,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1153889,6 +1160450,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 4.9 @@ -1155564,6 +1162126,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1155609,6 +1162172,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1155694,6 +1162258,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1155740,6 +1162305,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 335 @@ -1155801,6 +1162367,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1155847,6 +1162414,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 679 @@ -1155908,6 +1162476,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1155954,6 +1162523,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1548 @@ -1156177,6 +1162747,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1156222,6 +1162793,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1156307,6 +1162879,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1156353,6 +1162926,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 335 @@ -1156414,6 +1162988,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1156460,6 +1163035,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 310 @@ -1156521,6 +1163097,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1156567,6 +1163144,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 234 @@ -1156628,6 +1163206,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1156674,6 +1163253,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 135 @@ -1156735,6 +1163315,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1156781,6 +1163362,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1048 @@ -1156842,6 +1163424,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1156888,6 +1163471,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 251 @@ -1156949,6 +1163533,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1156995,6 +1163580,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 6 - 147 @@ -1157056,6 +1163642,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1157102,6 +1163689,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 7 - 102 @@ -1159145,6 +1165733,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2065631122} +--- !u!1 &2065663858 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2065663859} + - component: {fileID: 2065663863} + - component: {fileID: 2065663862} + - component: {fileID: 2065663861} + - component: {fileID: 2065663860} + m_Layer: 0 + m_Name: "4_\u84B8\u53D1\u91CF" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2065663859 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2065663858} + 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: 191094392} + - {fileID: 1149726836} + m_Father: {fileID: 1267491321} + m_RootOrder: 4 + 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: 182, y: 0} + m_SizeDelta: {x: 70, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &2065663860 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2065663858} + 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 &2065663861 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2065663858} + 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: 2065663862} + 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 &2065663862 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2065663858} + 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 &2065663863 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2065663858} --- !u!1 &2065673213 GameObject: m_ObjectHideFlags: 0 @@ -1160001,150 +1166733,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2067903190} ---- !u!1 &2067913523 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 2067913524} - - component: {fileID: 2067913528} - - component: {fileID: 2067913527} - - component: {fileID: 2067913526} - - component: {fileID: 2067913525} - m_Layer: 0 - m_Name: "4_\u84B8\u53D1\u91CF" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2067913524 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2067913523} - 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: 1377737016} - - {fileID: 1013356474} - m_Father: {fileID: 1267491321} - m_RootOrder: 4 - 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: 182, y: 0} - m_SizeDelta: {x: 70, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &2067913525 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2067913523} - 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 &2067913526 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2067913523} - 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: 2067913527} - 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 &2067913527 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2067913523} - 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 &2067913528 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2067913523} --- !u!1 &2068047504 GameObject: m_ObjectHideFlags: 0 @@ -1161011,6 +1167599,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2070047152} +--- !u!1 &2070068175 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2070068176} + - component: {fileID: 2070068178} + - component: {fileID: 2070068177} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2070068176 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2070068175} + 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: 578982816} + m_Father: {fileID: 266926534} + 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: 26, y: 0} + m_SizeDelta: {x: 64, y: 16} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2070068177 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2070068175} + 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 &2070068178 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2070068175} --- !u!1 &2070075517 GameObject: m_ObjectHideFlags: 0 @@ -1161670,6 +1168327,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1161715,6 +1168373,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1161800,6 +1168459,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1161846,6 +1168506,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 18 @@ -1164201,7 +1170862,7 @@ RectTransform: m_GameObject: {fileID: 2077408418} 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: 1107243629} m_RootOrder: 3 @@ -1168488,6 +1175149,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1168533,6 +1175195,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1168618,6 +1175281,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1168664,6 +1175328,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 335 @@ -1168725,6 +1175390,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1168771,6 +1175437,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 310 @@ -1168832,6 +1175499,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1168878,6 +1175546,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 234 @@ -1168939,6 +1175608,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1168985,6 +1175655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 135 @@ -1169046,6 +1175717,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1169092,6 +1175764,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 1548 @@ -1170392,6 +1177065,150 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2088844980} +--- !u!1 &2089140507 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2089140508} + - component: {fileID: 2089140512} + - component: {fileID: 2089140511} + - component: {fileID: 2089140510} + - component: {fileID: 2089140509} + m_Layer: 0 + m_Name: "0_\u9884\u7B97\u5206\u914D" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2089140508 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2089140507} + 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: 103526930} + - {fileID: 1028119068} + m_Father: {fileID: 971520527} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -91, y: 0} + m_SizeDelta: {x: 86, y: 14} + m_Pivot: {x: 1, y: 1} +--- !u!114 &2089140509 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2089140507} + 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 &2089140510 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2089140507} + 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: 2089140511} + 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 &2089140511 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2089140507} + 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 &2089140512 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2089140507} --- !u!1 &2089282726 GameObject: m_ObjectHideFlags: 0 @@ -1172097,7 +1178914,7 @@ RectTransform: m_GameObject: {fileID: 2095901325} 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: 1107243629} m_RootOrder: 10 @@ -1173672,7 +1180489,7 @@ RectTransform: m_GameObject: {fileID: 2101470042} 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: 100342731} - {fileID: 2040988647} @@ -1179714,7 +1186531,7 @@ RectTransform: m_GameObject: {fileID: 2118287786} 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: 2057043785} m_RootOrder: 28 @@ -1184564,6 +1191381,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1184609,6 +1191427,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1184694,6 +1191513,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1184740,6 +1191560,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 0 @@ -1184801,6 +1191622,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1184847,6 +1191669,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1700 @@ -1184908,6 +1191731,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1184954,6 +1191778,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 1400 @@ -1185015,6 +1191840,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1185061,6 +1191887,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 1200 @@ -1185122,6 +1191949,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1185168,6 +1191996,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 300 @@ -1185229,6 +1192058,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1185275,6 +1192105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 0 @@ -1185493,6 +1192324,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Emphasis: m_JsonData: m_DataFromJson: 0 @@ -1185538,6 +1192370,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_TitleStyle: m_JsonData: m_DataFromJson: 0 @@ -1185623,6 +1192456,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1185669,6 +1192503,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 0 - 2900 @@ -1185730,6 +1192565,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1185776,6 +1192612,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 1 - 1200 @@ -1185837,6 +1192674,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1185883,6 +1192721,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 2 - 300 @@ -1185944,6 +1192783,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1185990,6 +1192830,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 3 - 200 @@ -1186051,6 +1192892,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1186097,6 +1192939,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 4 - 900 @@ -1186158,6 +1193001,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_EnableEmphasis: 0 m_Emphasis: m_JsonData: @@ -1186204,6 +1193048,7 @@ MonoBehaviour: m_BorderWidth: 0 m_BorderColor: {r: 0, g: 0, b: 0, a: 0} m_Opacity: 1 + m_TooltipFormatter: m_Data: - 5 - 300 @@ -1186277,6 +1193122,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1186365,6 +1193211,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1186449,6 +1193296,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1186532,6 +1193380,7 @@ MonoBehaviour: m_AlignWithLabel: 0 m_Inside: 0 m_Length: 5 + m_Width: 0 m_AxisLabel: m_JsonData: m_DataFromJson: 0 @@ -1188781,75 +1195630,6 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2137602825} ---- !u!1 &2137836893 -GameObject: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - serializedVersion: 5 - m_Component: - - component: {fileID: 2137836894} - - component: {fileID: 2137836896} - - component: {fileID: 2137836895} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2137836894 -RectTransform: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2137836893} - 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: 1795371472} - m_Father: {fileID: 906316176} - 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: 32, y: 14} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &2137836895 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2137836893} - 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 &2137836896 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_PrefabParentObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 2137836893} --- !u!1 &2137884116 GameObject: m_ObjectHideFlags: 0 @@ -1191903,7 +1198683,7 @@ RectTransform: m_GameObject: {fileID: 2144716677} 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: 72499464} - {fileID: 787942018} @@ -1191950,6 +1198730,150 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2144988467 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2144988468} + - component: {fileID: 2144988472} + - component: {fileID: 2144988471} + - component: {fileID: 2144988470} + - component: {fileID: 2144988469} + m_Layer: 0 + m_Name: "2_\u67D0\u6C34\u679C\u624B\u673A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2144988468 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2144988467} + 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: 1772974967} + - {fileID: 1639516431} + m_Father: {fileID: 1267491321} + 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: 16, y: 0} + m_SizeDelta: {x: 102, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &2144988469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2144988467} + 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 &2144988470 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2144988467} + 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: 2144988471} + 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 &2144988471 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2144988467} + 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 &2144988472 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2144988467} --- !u!1 &2145213429 GameObject: m_ObjectHideFlags: 0